aboutsummaryrefslogtreecommitdiff
path: root/source/EditorInspector.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-04-10 23:00:36 -0700
committerrtk0c <[email protected]>2022-04-10 23:00:36 -0700
commit17d5b091c9b2901ac96f5eee0da6af07228ae690 (patch)
treec210229c4bee1d3f56a64eacf1f976dfd8f971a7 /source/EditorInspector.hpp
parenta849c199d970e153580c312a24cfdfa099bc7b69 (diff)
Changeset: 5 Add shader and corresponding editor components
Diffstat (limited to 'source/EditorInspector.hpp')
-rw-r--r--source/EditorInspector.hpp17
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);
-};