summaryrefslogtreecommitdiffstats
path: root/MatchBloxEngine/MatchBloxEngine/C_MatchBloxEngine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'MatchBloxEngine/MatchBloxEngine/C_MatchBloxEngine.cpp')
-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