From 9c11611507f7669c16e955cd64a44f616b8efabe Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 13 Aug 2016 20:08:47 -0400 Subject: TITANIC: Implemented CDoorbot class --- engines/titanic/npcs/true_talk_npc.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'engines/titanic/npcs/true_talk_npc.h') 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; -- cgit v1.2.3