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.hpp | |
parent | 906557f094e407ce21d429ef647bc75fe3179cf1 (diff) |
Add shader and corresponding editor components
Diffstat (limited to 'source/EditorInspector.hpp')
-rw-r--r-- | source/EditorInspector.hpp | 17 |
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); -}; |