diff options
author | rtk0c <[email protected]> | 2022-04-10 23:00:36 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-10 23:00:36 -0700 |
commit | 17d5b091c9b2901ac96f5eee0da6af07228ae690 (patch) | |
tree | c210229c4bee1d3f56a64eacf1f976dfd8f971a7 /source/EditorInspector.cpp | |
parent | a849c199d970e153580c312a24cfdfa099bc7b69 (diff) |
Changeset: 5 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; -} |