about summary refs log tree commit diff
path: root/src/engine/client/editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/client/editor.h')
-rw-r--r--src/engine/client/editor.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/engine/client/editor.h b/src/engine/client/editor.h
new file mode 100644
index 00000000..336a46d4
--- /dev/null
+++ b/src/engine/client/editor.h
@@ -0,0 +1,10 @@
+
+class IEditor
+{
+public:
+	virtual ~IEditor() {}
+	virtual void Init(class IGraphics *pGraphics) = 0;
+	virtual void UpdateAndRender() = 0;
+};
+
+extern IEditor *CreateEditor();