forgot to commit

This commit is contained in:
Pawel Kolodziejski 2004-03-20 08:22:51 +00:00
parent e1209a8a6b
commit 8457980cb2
2 changed files with 4 additions and 0 deletions

View File

@ -35,6 +35,7 @@ Engine::Engine() :
currScene_(NULL), selectedActor_(NULL) {
for (int i = 0; i < SDLK_EXTRA_LAST; i++)
controlsEnabled_[i] = false;
_speechMode = 2;
}
void Engine::mainLoop() {

View File

@ -93,6 +93,8 @@ public:
}
void setMode(int mode) { _mode = mode; }
void setSpeechMode(int mode) { _speechMode = mode; }
int getSpeechMode() { return _speechMode; }
void mainLoop();
unsigned frameStart() const { return frameStart_; }
@ -146,6 +148,7 @@ private:
Scene *currScene_;
int _mode;
int _speechMode;
unsigned frameStart_, frameTime_, movieTime_;