diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-28 18:31:18 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-28 18:31:18 +0200 |
commit | 1b84fc144f77c4ebef6fdc0a476410420e0a95b3 (patch) | |
tree | 62d019065f4e704ca33b8808e6d76b2fec640da1 /draw/wall.hpp | |
parent | 7c02d3b8f1e6ec4ee82bdf1220da431b1cd1231e (diff) |
refactoring work
Diffstat (limited to 'draw/wall.hpp')
-rw-r--r-- | draw/wall.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/draw/wall.hpp b/draw/wall.hpp index b021ef95..801d2c06 100644 --- a/draw/wall.hpp +++ b/draw/wall.hpp @@ -1,8 +1,7 @@ #pragma once -#include "tile.hpp" +#include "tile-defs.hpp" #include <array> -#include <Corrade/Containers/ArrayViewStl.h> #include <Magnum/Math/Vector2.h> #include <Magnum/Math/Vector3.h> #include <Magnum/GL/Mesh.h> @@ -10,6 +9,8 @@ namespace floormat { +struct tile; +struct tile_image; struct tile_shader; struct chunk; |