diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-07 08:11:35 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-07 08:14:07 +0100 |
commit | 29d5693a1ccebe7ff6c6b3d9a1088753c291fde8 (patch) | |
tree | 02ba70f1afdf04776813aa53329fab85bf57f62a /serialize | |
parent | dbb6d49a5632a26885e6e388128d68fe1932a4ea (diff) |
actually reenable ground out of bounds
Diffstat (limited to 'serialize')
-rw-r--r-- | serialize/anim.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/serialize/anim.hpp b/serialize/anim.hpp index 8915e8f1..9d6db66c 100644 --- a/serialize/anim.hpp +++ b/serialize/anim.hpp @@ -10,7 +10,8 @@ namespace floormat::Serialize { struct anim_frame final { - Vector2ui ground, offset, size; + Vector2i ground; + Vector2ui offset, size; }; enum class anim_direction : unsigned char |