Files
Nuake-custom/Editor/IEditorWidget.h
2025-01-26 00:07:15 -05:00

17 lines
275 B
C++

#pragma once
class EditorContext;
class IEditorWidget
{
protected:
EditorContext& editorContext;
public:
IEditorWidget(EditorContext& inContext) : editorContext(inContext) {}
~IEditorWidget() {};
public:
virtual void Update(float ts) = 0;
virtual void Draw() = 0;
};