summaryrefslogtreecommitdiffhomepage
path: root/loader/vobj-info.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'loader/vobj-info.hpp')
-rw-r--r--loader/vobj-info.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/loader/vobj-info.hpp b/loader/vobj-info.hpp
new file mode 100644
index 00000000..8bc7d189
--- /dev/null
+++ b/loader/vobj-info.hpp
@@ -0,0 +1,15 @@
+#pragma once
+#include <memory>
+#include <Corrade/Containers/String.h>
+
+namespace floormat {
+
+struct anim_atlas;
+
+struct vobj_info final
+{
+ String name, descr;
+ std::shared_ptr<anim_atlas> atlas;
+};
+
+} // namespace floormat