diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-08 08:36:19 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-08 08:36:55 +0100 |
commit | dd4ee56968b3ab10763363dfef76b06c8548a66f (patch) | |
tree | 08ccc07ad0f9959a43ea91eb13ce58187034b727 /loader/anim-info.hpp | |
parent | ae1e2f97ad37b335f210d49dab97502bc468da6e (diff) |
work on the atlas loaders
Diffstat (limited to 'loader/anim-info.hpp')
-rw-r--r-- | loader/anim-info.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/loader/anim-info.hpp b/loader/anim-info.hpp new file mode 100644 index 00000000..97ba5954 --- /dev/null +++ b/loader/anim-info.hpp @@ -0,0 +1,15 @@ +#pragma once +#include <memory> +#include <Corrade/Containers/String.h> + +namespace floormat { + +class anim_atlas; + +struct anim_info +{ + String name; + std::shared_ptr<anim_atlas> atlas; +}; + +} // namespace floormat |