summaryrefslogtreecommitdiffhomepage
path: root/src/chunk-walls.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/chunk-walls.cpp')
-rw-r--r--src/chunk-walls.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/chunk-walls.cpp b/src/chunk-walls.cpp
new file mode 100644
index 00000000..2c09a79d
--- /dev/null
+++ b/src/chunk-walls.cpp
@@ -0,0 +1,22 @@
+#include "chunk.hpp"
+#include "src/tile-bbox.hpp"
+#include <Corrade/Containers/ArrayView.h>
+#include <Corrade/Containers/PairStl.h>
+
+// +x +y +z
+// +x +y -z
+// -x -y +z
+// -x +y -z
+
+namespace floormat {
+
+using Wall::Group_;
+
+// wall north
+template<> auto chunk::make_wall_vertex_data<Group_::wall, false>(size_t tile, float depth) -> vertex
+{
+}
+
+
+
+} // namespace floormat