diff options
Diffstat (limited to 'loader/anim-cell.hpp')
-rw-r--r-- | loader/anim-cell.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/loader/anim-cell.hpp b/loader/anim-cell.hpp new file mode 100644 index 00000000..a9c92a23 --- /dev/null +++ b/loader/anim-cell.hpp @@ -0,0 +1,15 @@ +#pragma once +#include <memory> +#include <Corrade/Containers/String.h> + +namespace floormat { + +class anim_atlas; + +struct anim_cell +{ + String name; + std::shared_ptr<anim_atlas> atlas; +}; + +} // namespace floormat |