aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/group.h
diff options
context:
space:
mode:
authorBendegúz Nagy2016-06-30 15:00:42 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commitcd7363f8de93001208f34d43bcb4f656b8514110 (patch)
tree54e474044a6a1a2203aef86a3fd3d3fe4783aa2d /engines/dm/group.h
parent4f394fc301ed9ae087e6cabbf54607ea89629ffa (diff)
downloadscummvm-rg350-cd7363f8de93001208f34d43bcb4f656b8514110.tar.gz
scummvm-rg350-cd7363f8de93001208f34d43bcb4f656b8514110.tar.bz2
scummvm-rg350-cd7363f8de93001208f34d43bcb4f656b8514110.zip
DM: Add F0147_DUNGEON_GetGroupDirections
Diffstat (limited to 'engines/dm/group.h')
-rw-r--r--engines/dm/group.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/dm/group.h b/engines/dm/group.h
index 3cd286a132..0ad9cbb545 100644
--- a/engines/dm/group.h
+++ b/engines/dm/group.h
@@ -36,7 +36,7 @@ namespace DM {
class ActiveGroup {
public:
int _groupThingIndex;
- byte _directions;
+ direction _directions;
byte _cells;
byte _lastMoveTime;
byte _delayFleeingFromTarget;
@@ -86,6 +86,7 @@ public:
~GroupMan();
void initActiveGroups(); // @ F0196_GROUP_InitializeActiveGroups
uint16 getGroupCells(Group *group, int16 mapIndex); // @ F0145_DUNGEON_GetGroupCells
+ uint16 getGroupDirections(Group *group, int16 mapIndex); // @ F0147_DUNGEON_GetGroupDirections
};