aboutsummaryrefslogtreecommitdiff
path: root/engines/mads/scene_data.h
diff options
context:
space:
mode:
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 {