aboutsummaryrefslogtreecommitdiff
path: root/source/EditorInspector.cpp
diff options
context:
space:
mode:
authorhnOsmium0001 <[email protected]>2022-04-10 22:42:14 -0700
committerhnOsmium0001 <[email protected]>2022-04-10 23:00:36 -0700
commit67affc75a4824dfd8675cc5455d9ee71b1583c1c (patch)
treee6624157831039ed3c1668b6a4b21337633f41e6 /source/EditorInspector.cpp
parent906557f094e407ce21d429ef647bc75fe3179cf1 (diff)
Add shader and corresponding editor components
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;
-}