diff options
author | hnOsmium0001 <[email protected]> | 2022-04-10 22:42:14 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-10 23:00:36 -0700 |
commit | 67affc75a4824dfd8675cc5455d9ee71b1583c1c (patch) | |
tree | e6624157831039ed3c1668b6a4b21337633f41e6 /source/EditorInspector.cpp | |
parent | 906557f094e407ce21d429ef647bc75fe3179cf1 (diff) |
Add shader and corresponding editor components
Diffstat (limited to 'source/EditorInspector.cpp')
-rw-r--r-- | source/EditorInspector.cpp | 15 |
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; -} |