From 206d167457efe684478a7947535a9c58b790e31d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 30 Jun 2007 16:25:59 +0000 Subject: AGOS: Introduced ChildType enum svn-id: r27792 --- engines/agos/intern.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'engines/agos/intern.h') diff --git a/engines/agos/intern.h b/engines/agos/intern.h index a863dc7c0f..cac5813ca4 100644 --- a/engines/agos/intern.h +++ b/engines/agos/intern.h @@ -28,6 +28,21 @@ namespace AGOS { +enum ChildType { + kRoomType = 1, + kObjectType = 2, + kPlayerType = 3, + kSuperRoomType = 4, + + kGenExitType = 4, // FIXME: Clash with kSuperRoomType ?!? + + kContainerType = 7, + kChainType = 8, + kUserFlagType = 9, + + kInheritType = 255 +}; + struct Child { Child *next; uint16 type; -- cgit v1.2.3