diff options
Diffstat (limited to 'saga/interface.h')
-rw-r--r-- | saga/interface.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/saga/interface.h b/saga/interface.h index 4fdacf30c0..306819a2b8 100644 --- a/saga/interface.h +++ b/saga/interface.h @@ -70,7 +70,8 @@ enum PanelModes { kPanelSceneSubstitute, kPanelChapterSelection, kPanelCutaway, - kPanelVideo + kPanelVideo, + kPanelBoss // kPanelInventory }; @@ -243,6 +244,9 @@ public: bool processAscii(uint16 ascii, bool synthetic = false); void processKeyUp(uint16 ascii); + void keyBoss(); + void keyBossExit(); + void disableAbortSpeeches(bool d) { _disableAbortSpeeches = d; } bool _textInput; @@ -423,6 +427,7 @@ private: int _panelMode; int _savedMode; int _lockedMode; + int _bossMode; bool _inMainMode; char _statusText[STATUS_TEXT_LEN]; int _statusOnceColor; |