aboutsummaryrefslogtreecommitdiff
path: root/source/EditorInspector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/EditorInspector.cpp')
-rw-r--r--source/EditorInspector.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/source/EditorInspector.cpp b/source/EditorInspector.cpp
deleted file mode 100644
index 2f1d65c..0000000
--- a/source/EditorInspector.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "EditorInspector.hpp"
-
-void EditorInspector::Show() {
- if (mCurrentTarget) {
- mCurrentTarget->ShowInspector();
- }
-}
-
-IEditorInspectorTarget* EditorInspector::GetCurrentTarget() const {
- return mCurrentTarget;
-}
-
-void EditorInspector::SetCurrentTarget(IEditorInspectorTarget* target) {
- mCurrentTarget = target;
-}