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, 0 insertions, 10 deletions
diff --git a/src/engine/client/editor.h b/src/engine/client/editor.h
deleted file mode 100644
index 336a46d4..00000000
--- a/src/engine/client/editor.h
+++ /dev/null
@@ -1,10 +0,0 @@
-
-class IEditor
-{
-public:
-	virtual ~IEditor() {}
-	virtual void Init(class IGraphics *pGraphics) = 0;
-	virtual void UpdateAndRender() = 0;
-};
-
-extern IEditor *CreateEditor();