diff options
author | rtk0c <[email protected]> | 2022-05-22 23:05:03 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-05-22 23:05:03 -0700 |
commit | 123f741e3f5374b93ac39887b62bfa0d66762ae2 (patch) | |
tree | cedbc4b2dd87e2caadfde48a0c12a0336672bdd3 /source/EditorCorePrivate.hpp | |
parent | c568f0a8c9f0aef00c770b494ee1ff3a89ab48de (diff) |
Changeset: 36 Add basic machinery for levels (no saving/loading yet)
Diffstat (limited to 'source/EditorCorePrivate.hpp')
-rw-r--r-- | source/EditorCorePrivate.hpp | 3 |
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(); |