summaryrefslogtreecommitdiffhomepage
path: root/src/chunk-walls.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-12-07 09:27:52 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-12-09 05:08:48 +0100
commit459e94900d06ea79b7fb215880e336a8cba156ca (patch)
treec099f716f75c8bbb94b77d6fcf5478ae9b72e8ca /src/chunk-walls.cpp
parent142a53e157d5f1f591feb2560b2e6260e4a2a249 (diff)
wipshit
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