25 #include "common/language.h" 26 #include "common/rect.h" 27 #include "common/events.h" 28 #include "queen/defs.h" 46 DELAY_SCREEN_BLANKER = 5 * 60 * 1000
55 void delay(uint amount);
63 void canQuit(
bool cq) { _canQuit = cq; }
65 bool cutawayRunning()
const {
return _cutawayRunning; }
66 void cutawayRunning(
bool running) { _cutawayRunning = running; }
68 bool cutawayQuit()
const {
return _cutawayQuit; }
69 void cutawayQuitReset() { _cutawayQuit =
false; }
71 void dialogueRunning(
bool running) { _dialogueRunning = running; }
73 bool talkQuit()
const {
return _talkQuit; }
74 void talkQuitReset() { _talkQuit =
false; }
76 bool quickSave()
const {
return _quickSave; }
77 void quickSaveReset() { _quickSave =
false; }
78 bool quickLoad()
const {
return _quickLoad; }
79 void quickLoadReset() { _quickLoad =
false; }
81 bool fastMode()
const {
return _fastMode; }
82 void fastMode(
bool fm) { _fastMode = fm; }
84 Verb keyVerb()
const {
return _keyVerb; }
88 int mouseButton()
const {
return _mouseButton; }
89 void clearMouseButton() { _mouseButton = 0; }
108 bool _cutawayRunning;
117 bool _dialogueRunning;
uint32 CustomEventType
Definition: events.h:204
Language
Definition: language.h:45