diff options
Diffstat (limited to 'src/chunk.hpp')
-rw-r--r-- | src/chunk.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chunk.hpp b/src/chunk.hpp index 0c10e1be..32d72d77 100644 --- a/src/chunk.hpp +++ b/src/chunk.hpp @@ -135,7 +135,7 @@ private: bool empty() const { return count_N == 0 && count_W == 0; } }; - template<Wall::Group_ G, bool IsWest> static vertex make_wall_vertex_data(size_t tile, float depth); + template<Wall::Group_ G, bool IsWest> static std::array<Vector3, 4> make_wall_vertex_data(Vector2 center, float depth); Pointer<ground_stuff> _ground; Pointer<wall_stuff> _walls; |