summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-11-22 09:47:25 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-11-22 09:47:25 +0100
commit28ba97727326c05c9347b50b0114f01c0ec8b1df (patch)
tree223712106e660dec018f7dfc3329ca48e5c8fb11 /editor
parentb7006b670843f692bc14aa9932bffd44f6a629f7 (diff)
a
Diffstat (limited to 'editor')
-rw-r--r--editor/app.hpp4
-rw-r--r--editor/editor.hpp4
-rw-r--r--editor/scenery-editor.hpp2
-rw-r--r--editor/vobj-editor.hpp2
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;