diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-22 09:47:25 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-11-22 09:47:25 +0100 |
commit | 28ba97727326c05c9347b50b0114f01c0ec8b1df (patch) | |
tree | 223712106e660dec018f7dfc3329ca48e5c8fb11 /editor | |
parent | b7006b670843f692bc14aa9932bffd44f6a629f7 (diff) |
a
Diffstat (limited to 'editor')
-rw-r--r-- | editor/app.hpp | 4 | ||||
-rw-r--r-- | editor/editor.hpp | 4 | ||||
-rw-r--r-- | editor/scenery-editor.hpp | 2 | ||||
-rw-r--r-- | editor/vobj-editor.hpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/editor/app.hpp b/editor/app.hpp index 7cf983bc..04857771 100644 --- a/editor/app.hpp +++ b/editor/app.hpp @@ -21,10 +21,10 @@ namespace floormat { struct chunk; struct floormat_main; -struct tile_atlas; +class tile_atlas; struct tile_editor; struct fm_settings; -struct anim_atlas; +class anim_atlas; struct critter; struct point; diff --git a/editor/editor.hpp b/editor/editor.hpp index 1ae983de..d877288d 100644 --- a/editor/editor.hpp +++ b/editor/editor.hpp @@ -15,8 +15,8 @@ namespace floormat { struct world; -struct anim_atlas; -struct tile_atlas; +class anim_atlas; +class tile_atlas; struct app; struct editor final diff --git a/editor/scenery-editor.hpp b/editor/scenery-editor.hpp index f3c3780b..cf2a1681 100644 --- a/editor/scenery-editor.hpp +++ b/editor/scenery-editor.hpp @@ -6,7 +6,7 @@ namespace floormat { -struct anim_atlas; +class anim_atlas; struct global_coords; struct world; struct app; diff --git a/editor/vobj-editor.hpp b/editor/vobj-editor.hpp index e26289d4..e92c6abe 100644 --- a/editor/vobj-editor.hpp +++ b/editor/vobj-editor.hpp @@ -10,7 +10,7 @@ namespace floormat { struct world; struct global_coords; struct object; -struct anim_atlas; +class anim_atlas; struct vobj_info; struct app; |