diff options
Diffstat (limited to 'source/EditorInspector.hpp')
-rw-r--r-- | source/EditorInspector.hpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/source/EditorInspector.hpp b/source/EditorInspector.hpp deleted file mode 100644 index d74b7a8..0000000 --- a/source/EditorInspector.hpp +++ /dev/null @@ -1,17 +0,0 @@ -#pragma once - -class IEditorInspectorTarget { -public: - virtual void ShowInspector() = 0; -}; - -class EditorInspector { -private: - IEditorInspectorTarget* mCurrentTarget = nullptr; - -public: - void Show(); - - IEditorInspectorTarget* GetCurrentTarget() const; - void SetCurrentTarget(IEditorInspectorTarget* target); -}; |