aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/scene_data.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-04-08 23:01:46 -0400
committerPaul Gilbert2014-04-08 23:01:46 -0400
commit09adb571d35c45941246bdce5db895d9d81fd59c (patch)
tree6051a6e34a3b13e3f30fc2deb8d88dd3dbfb7253 /engines/mads/scene_data.h
parent21a0e38f34324423e0f571ccb37a800737cd78d2 (diff)
downloadscummvm-rg350-09adb571d35c45941246bdce5db895d9d81fd59c.tar.gz
scummvm-rg350-09adb571d35c45941246bdce5db895d9d81fd59c.tar.bz2
scummvm-rg350-09adb571d35c45941246bdce5db895d9d81fd59c.zip
MADS: Cleanup of verb/preposition flags handling
Diffstat (limited to 'engines/mads/scene_data.h')
-rw-r--r--engines/mads/scene_data.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/mads/scene_data.h b/engines/mads/scene_data.h
index 73ca21d092..e37aa43855 100644
--- a/engines/mads/scene_data.h
+++ b/engines/mads/scene_data.h
@@ -60,11 +60,12 @@ enum {
class VerbInit {
public:
int _id;
- int _action1;
- int _action2;
+ VerbType _verbType;
+ PrepType _prepType;
VerbInit() {}
- VerbInit(int id, int action1, int action2): _id(id), _action1(action1), _action2(action2) {}
+ VerbInit(int id, VerbType verbType, PrepType prepType): _id(id),
+ _verbType(verbType), _prepType(prepType) {}
};
class SceneLogic {