aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/npcs/true_talk_npc.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-13 20:08:47 -0400
committerPaul Gilbert2016-08-13 20:08:47 -0400
commit9c11611507f7669c16e955cd64a44f616b8efabe (patch)
treec1eb6ed6b3a6d8bf13e656d2cfe11be0bfc75190 /engines/titanic/npcs/true_talk_npc.h
parente5c100cf9c02c62d64f1d7bb257b03e5e5ec58fe (diff)
downloadscummvm-rg350-9c11611507f7669c16e955cd64a44f616b8efabe.tar.gz
scummvm-rg350-9c11611507f7669c16e955cd64a44f616b8efabe.tar.bz2
scummvm-rg350-9c11611507f7669c16e955cd64a44f616b8efabe.zip
TITANIC: Implemented CDoorbot class
Diffstat (limited to 'engines/titanic/npcs/true_talk_npc.h')
-rw-r--r--engines/titanic/npcs/true_talk_npc.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/engines/titanic/npcs/true_talk_npc.h b/engines/titanic/npcs/true_talk_npc.h
index 6a4e65035e..ea6cbb3f84 100644
--- a/engines/titanic/npcs/true_talk_npc.h
+++ b/engines/titanic/npcs/true_talk_npc.h
@@ -31,8 +31,12 @@ namespace Titanic {
enum NpcFlag {
NPCFLAG_SPEAKING = 1, NPCFLAG_2 = 2, NPCFLAG_4 = 4, NPCFLAG_8 = 8,
- NPCFLAG_10000 = 0x10000, NPCFLAG_20000 = 0x20000, NPCFLAG_40000 = 0x40000,
- NPCFLAG_80000 = 0x80000, NPCFLAG_100000 = 0x100000
+ NPCFLAG_10000 = 0x10000, NPCFLAG_20000 = 0x20000,
+ NPCFLAG_40000 = 0x40000, NPCFLAG_80000 = 0x80000,
+ NPCFLAG_100000 = 0x100000, NPCFLAG_200000 = 0x200000,
+ NPCFLAG_400000 = 0x400000, NPCFLAG_800000 = 0x800000,
+ NPCFLAG_1000000 = 0x1000000, NPCFLAG_2000000 = 0x2000000,
+ NPCFLAG_4000000 = 0x4000000, NPCFLAG_8000000 = 0x8000000
};
class CViewItem;