about summary refs log tree commit diff
path: root/src/engine/client/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/client/client.h')
-rw-r--r--src/engine/client/client.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/engine/client/client.h b/src/engine/client/client.h
new file mode 100644
index 00000000..64ef6d9b
--- /dev/null
+++ b/src/engine/client/client.h
@@ -0,0 +1,17 @@
+
+
+class IEngine
+{
+public:
+	virtual ~IEngine() {}
+	virtual class IGraphics *Graphics() = 0;
+};
+
+
+class IGameClient
+{
+public:
+	virtual ~IGameClient() {}
+};
+
+extern IGameClient *CreateGameClient(IEngine *pEngine);