summaryrefslogtreecommitdiffhomepage
path: root/loader/ground-cell.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'loader/ground-cell.hpp')
-rw-r--r--loader/ground-cell.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/loader/ground-cell.hpp b/loader/ground-cell.hpp
new file mode 100644
index 00000000..260301c2
--- /dev/null
+++ b/loader/ground-cell.hpp
@@ -0,0 +1,17 @@
+#pragma once
+#include "src/ground-def.hpp"
+#include <memory>
+
+namespace floormat {
+
+class ground_atlas;
+
+struct ground_cell
+{
+ std::shared_ptr<ground_atlas> atlas;
+ String name;
+ Vector2ub size;
+ pass_mode pass = pass_mode::pass;
+};
+
+} // namespace floormat