diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-07 22:00:01 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-07 22:00:01 +0200 |
commit | 766909047b6873b5af3f9aa98c6ed8cd53c6cc54 (patch) | |
tree | 3b32bc3035f14c2072fd687e2c9b18b7860c88e0 /serialize | |
parent | d19a44bcb53cebbee0ae51981f66b93b31cb9dcb (diff) |
a
Diffstat (limited to 'serialize')
-rw-r--r-- | serialize/anim.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/serialize/anim.hpp b/serialize/anim.hpp index bce88923..41ff5108 100644 --- a/serialize/anim.hpp +++ b/serialize/anim.hpp @@ -14,7 +14,8 @@ namespace Magnum::Examples::Serialize { struct anim_frame final { - Magnum::Vector2i ground, offset, size; + Vector2i ground, offset; + Vector2ui size; }; enum class anim_direction : unsigned char @@ -27,7 +28,7 @@ struct anim_group final { std::string name; std::vector<anim_frame> frames; - Magnum::Vector2i ground; + Vector2i ground; }; struct anim final |