#include "EditorInspector.hpp" void EditorInspector::Show() { if (mCurrentTarget) { mCurrentTarget->ShowInspector(); } } IEditorInspectorTarget* EditorInspector::GetCurrentTarget() const { return mCurrentTarget; } void EditorInspector::SetCurrentTarget(IEditorInspectorTarget* target) { mCurrentTarget = target; }