aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/commands
diff options
context:
space:
mode:
authorĽubomír Remák2018-03-20 18:58:45 +0100
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commit1d84041508b3acaf7a47fde81e7e334c004507b8 (patch)
tree17a1e5fb8eeb5ef0a5c680d591223ba1fb6603e7 /engines/mutationofjb/commands
parentfb75e483e43a00bb20329dd0b5db92a3588a2d2e (diff)
downloadscummvm-rg350-1d84041508b3acaf7a47fde81e7e334c004507b8.tar.gz
scummvm-rg350-1d84041508b3acaf7a47fde81e7e334c004507b8.tar.bz2
scummvm-rg350-1d84041508b3acaf7a47fde81e7e334c004507b8.zip
MUTATIONOFJB: Add Game class.
Diffstat (limited to 'engines/mutationofjb/commands')
-rw-r--r--engines/mutationofjb/commands/additemcommand.cpp2
-rw-r--r--engines/mutationofjb/commands/changecommand.h2
-rw-r--r--engines/mutationofjb/commands/gotocommand.cpp2
-rw-r--r--engines/mutationofjb/commands/ifcommand.cpp2
-rw-r--r--engines/mutationofjb/commands/ifitemcommand.cpp2
-rw-r--r--engines/mutationofjb/commands/ifpiggycommand.cpp2
-rw-r--r--engines/mutationofjb/commands/labelcommand.cpp1
-rw-r--r--engines/mutationofjb/commands/removeallitemscommand.cpp2
-rw-r--r--engines/mutationofjb/commands/removeitemcommand.cpp2
9 files changed, 8 insertions, 9 deletions
diff --git a/engines/mutationofjb/commands/additemcommand.cpp b/engines/mutationofjb/commands/additemcommand.cpp
index b0c7d21f28..58ec5675fb 100644
--- a/engines/mutationofjb/commands/additemcommand.cpp
+++ b/engines/mutationofjb/commands/additemcommand.cpp
@@ -21,7 +21,7 @@
*/
#include "mutationofjb/commands/additemcommand.h"
-#include "mutationofjb/game.h"
+#include "mutationofjb/gamedata.h"
/*
"ADDITEM" " " <item>
diff --git a/engines/mutationofjb/commands/changecommand.h b/engines/mutationofjb/commands/changecommand.h
index af9a608e03..5ba386bf02 100644
--- a/engines/mutationofjb/commands/changecommand.h
+++ b/engines/mutationofjb/commands/changecommand.h
@@ -21,7 +21,7 @@
*/
#include "mutationofjb/commands/seqcommand.h"
-#include "mutationofjb/game.h"
+#include "mutationofjb/gamedata.h"
namespace MutationOfJB {
diff --git a/engines/mutationofjb/commands/gotocommand.cpp b/engines/mutationofjb/commands/gotocommand.cpp
index 92cce14479..40560f3bfb 100644
--- a/engines/mutationofjb/commands/gotocommand.cpp
+++ b/engines/mutationofjb/commands/gotocommand.cpp
@@ -22,7 +22,7 @@
#include "mutationofjb/commands/gotocommand.h"
#include "mutationofjb/commands/labelcommand.h"
-#include "mutationofjb/game.h"
+#include "mutationofjb/gamedata.h"
#include "mutationofjb/script.h"
/*
diff --git a/engines/mutationofjb/commands/ifcommand.cpp b/engines/mutationofjb/commands/ifcommand.cpp
index 44c6b18735..f78335ad60 100644
--- a/engines/mutationofjb/commands/ifcommand.cpp
+++ b/engines/mutationofjb/commands/ifcommand.cpp
@@ -21,7 +21,7 @@
*/
#include "mutationofjb/commands/ifcommand.h"
-#include "mutationofjb/game.h"
+#include "mutationofjb/gamedata.h"
#include "mutationofjb/script.h"
#include "common/str.h"
#include "common/translation.h"
diff --git a/engines/mutationofjb/commands/ifitemcommand.cpp b/engines/mutationofjb/commands/ifitemcommand.cpp
index 6f467da0bd..7512ba5955 100644
--- a/engines/mutationofjb/commands/ifitemcommand.cpp
+++ b/engines/mutationofjb/commands/ifitemcommand.cpp
@@ -21,7 +21,7 @@
*/
#include "mutationofjb/commands/ifitemcommand.h"
-#include "mutationofjb/game.h"
+#include "mutationofjb/gamedata.h"
#include "mutationofjb/script.h"
#include "mutationofjb/util.h"
#include "common/str.h"
diff --git a/engines/mutationofjb/commands/ifpiggycommand.cpp b/engines/mutationofjb/commands/ifpiggycommand.cpp
index 2ecd437611..cad0a14eb1 100644
--- a/engines/mutationofjb/commands/ifpiggycommand.cpp
+++ b/engines/mutationofjb/commands/ifpiggycommand.cpp
@@ -21,7 +21,7 @@
*/
#include "mutationofjb/commands/ifpiggycommand.h"
-#include "mutationofjb/game.h"
+#include "mutationofjb/gamedata.h"
#include "mutationofjb/script.h"
#include "mutationofjb/util.h"
#include "common/str.h"
diff --git a/engines/mutationofjb/commands/labelcommand.cpp b/engines/mutationofjb/commands/labelcommand.cpp
index 4540a83aa3..15a10cafd4 100644
--- a/engines/mutationofjb/commands/labelcommand.cpp
+++ b/engines/mutationofjb/commands/labelcommand.cpp
@@ -22,7 +22,6 @@
#include "mutationofjb/commands/labelcommand.h"
#include "mutationofjb/commands/gotocommand.h"
-#include "mutationofjb/game.h"
#include "mutationofjb/script.h"
/*
diff --git a/engines/mutationofjb/commands/removeallitemscommand.cpp b/engines/mutationofjb/commands/removeallitemscommand.cpp
index 8c6309f46c..8043864715 100644
--- a/engines/mutationofjb/commands/removeallitemscommand.cpp
+++ b/engines/mutationofjb/commands/removeallitemscommand.cpp
@@ -21,7 +21,7 @@
*/
#include "mutationofjb/commands/removeallitemscommand.h"
-#include "mutationofjb/game.h"
+#include "mutationofjb/gamedata.h"
/*
"DELALLITEMS"
diff --git a/engines/mutationofjb/commands/removeitemcommand.cpp b/engines/mutationofjb/commands/removeitemcommand.cpp
index c6aad0e6e8..e4d9601824 100644
--- a/engines/mutationofjb/commands/removeitemcommand.cpp
+++ b/engines/mutationofjb/commands/removeitemcommand.cpp
@@ -21,7 +21,7 @@
*/
#include "mutationofjb/commands/removeitemcommand.h"
-#include "mutationofjb/game.h"
+#include "mutationofjb/gamedata.h"
/*
"DELITEM" " " <item>