diff options
Diffstat (limited to 'draw/floor.hpp')
-rw-r--r-- | draw/floor.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/draw/floor.hpp b/draw/floor.hpp index 4a273dfc..4ece92eb 100644 --- a/draw/floor.hpp +++ b/draw/floor.hpp @@ -10,10 +10,10 @@ namespace floormat { -struct tile_shader; -struct chunk; struct tile_ref; struct tile_proto; +struct tile_shader; +struct chunk; struct floor_mesh final { @@ -34,7 +34,7 @@ private: GL::Buffer _vertex_buffer{std::array<quad_data, TILE_COUNT>{}, Magnum::GL::BufferUsage::DynamicDraw}, _index_buffer{make_index_array()}, _positions_buffer{make_position_array()}; - static void set_tile(quad_data& data, tile& x); + static void set_tile(quad_data& data, tile_ref& x); }; } // namespace floormat |