From 5f032f0e71f8382034c729577450e48721cfdc93 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 6 Nov 2022 13:42:05 +0100 Subject: switch anim atlas ground to unsigned --- serialize/anim.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'serialize') diff --git a/serialize/anim.hpp b/serialize/anim.hpp index fb4b2f80..8915e8f1 100644 --- a/serialize/anim.hpp +++ b/serialize/anim.hpp @@ -10,8 +10,7 @@ namespace floormat::Serialize { struct anim_frame final { - Vector2i ground; - Vector2ui offset, size; + Vector2ui ground, offset, size; }; enum class anim_direction : unsigned char @@ -24,7 +23,7 @@ struct anim_group final { String name; std::vector frames; - Vector2i ground; + Vector2ui ground; }; struct anim final -- cgit v1.2.3