aboutsummaryrefslogtreecommitdiff
path: root/source/EditorCorePrivate.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-05-22 23:05:03 -0700
committerrtk0c <[email protected]>2022-05-22 23:05:03 -0700
commit123f741e3f5374b93ac39887b62bfa0d66762ae2 (patch)
treecedbc4b2dd87e2caadfde48a0c12a0336672bdd3 /source/EditorCorePrivate.hpp
parentc568f0a8c9f0aef00c770b494ee1ff3a89ab48de (diff)
Changeset: 36 Add basic machinery for levels (no saving/loading yet)
Diffstat (limited to 'source/EditorCorePrivate.hpp')
-rw-r--r--source/EditorCorePrivate.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/EditorCorePrivate.hpp b/source/EditorCorePrivate.hpp
index 884d33c..4fbfb72 100644
--- a/source/EditorCorePrivate.hpp
+++ b/source/EditorCorePrivate.hpp
@@ -8,6 +8,7 @@
#include "EditorUtils.hpp"
#include "GameObject.hpp"
#include "Ires.hpp"
+#include "Level.hpp"
#include "RcPtr.hpp"
#include "Sprite.hpp"
#include "World.hpp"
@@ -31,6 +32,7 @@ private:
enum Pane {
P_Settings,
P_Ires,
+ P_Level,
};
static constexpr float kSplitterThickness = 3.0f;
@@ -121,6 +123,7 @@ private:
void ShowWorldProperties();
void ShowInspector(IresObject* ires);
+ void ShowInspector(LevelManager::LoadableObject* ldObj);
void ShowInspector(GameObject* object);
void ShowSpriteViewer();