diff options
Diffstat (limited to 'src/tile.hpp')
-rw-r--r-- | src/tile.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tile.hpp b/src/tile.hpp index a195eec4..3f691567 100644 --- a/src/tile.hpp +++ b/src/tile.hpp @@ -8,8 +8,8 @@ class anim_atlas; struct tile_proto final { - std::shared_ptr<ground_atlas> ground_atlas; - std::shared_ptr<wall_atlas> wall_north_atlas, wall_west_atlas; + std::shared_ptr<class ground_atlas> ground_atlas; + std::shared_ptr<class wall_atlas> wall_north_atlas, wall_west_atlas; variant_t ground_variant = 0, wall_north_variant = 0, wall_west_variant = 0; tile_image_proto ground() const noexcept; |