summaryrefslogtreecommitdiffstats
path: root/MatchBloxEngine/MatchBloxEngine/C_MatchBloxEngine.cpp
diff options
context:
space:
mode:
authorDennis Peeten <dpeeten@onsneteindhoven.nl>2008-04-22 13:32:09 (GMT)
committerDennis Peeten <dpeeten@onsneteindhoven.nl>2008-04-22 13:32:09 (GMT)
commit2b53b94bdc1815fbc73f7ef0e5c2400f42a55508 (patch)
treed88af88abd415094b636a968d1640bf205bbb1c7 /MatchBloxEngine/MatchBloxEngine/C_MatchBloxEngine.cpp
parent92f2ef5fa1b80c6491ce46eab0ab0908eb9be9cc (diff)
download2iv55-2b53b94bdc1815fbc73f7ef0e5c2400f42a55508.zip
2iv55-2b53b94bdc1815fbc73f7ef0e5c2400f42a55508.tar.gz
2iv55-2b53b94bdc1815fbc73f7ef0e5c2400f42a55508.tar.bz2
Initial check in MatchBloxEngine
Diffstat (limited to '')
-rw-r--r--MatchBloxEngine/MatchBloxEngine/C_MatchBloxEngine.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/MatchBloxEngine/MatchBloxEngine/C_MatchBloxEngine.cpp b/MatchBloxEngine/MatchBloxEngine/C_MatchBloxEngine.cpp
new file mode 100644
index 0000000..ed40038
--- /dev/null
+++ b/MatchBloxEngine/MatchBloxEngine/C_MatchBloxEngine.cpp
@@ -0,0 +1,42 @@
+#include "C_MatchBloxEngine.h"
+
+C_MatchBloxEngine::C_MatchBloxEngine(char *f_strModelPath, char *f_strLogFile)
+{
+}
+
+C_MatchBloxEngine::~C_MatchBloxEngine()
+{
+}
+
+GameResult C_MatchBloxEngine::GameStep(msgQueue &f_Queue)
+{
+}
+
+void C_MatchBloxEngine::Draw(unsigned int f_uiElapsedTime)
+{
+}
+
+bool C_MatchBloxEngine::NewGame(int f_iUserID, int f_iGameId)
+{
+ return false;
+}
+
+bool C_MatchBloxEngine::StartGame()
+{
+ return false;
+}
+
+bool C_MatchBloxEngine::Pause()
+{
+ return false;
+}
+
+bool C_MatchBloxEngine::Resume()
+{
+ return false;
+}
+
+bool C_MatchBloxEngine::Abort()
+{
+ return false;
+} \ No newline at end of file