diff options
Diffstat (limited to 'src/gui/npc_text.h')
-rw-r--r-- | src/gui/npc_text.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/npc_text.h b/src/gui/npc_text.h index 604212d2..a1373830 100644 --- a/src/gui/npc_text.h +++ b/src/gui/npc_text.h @@ -87,6 +87,13 @@ class NpcTextDialog : public Window, public gcn::ActionListener gcn::Button *mButton; std::string mText; + + enum NPCTextState { + NPC_TEXT_STATE_WAITING, + NPC_TEXT_STATE_NEXT, + NPC_TEXT_STATE_CLOSE + }; + int mState; }; #endif // NPC_TEXT_H |