1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00

Timers fixes

This commit is contained in:
nordsoft
2023-08-30 03:33:59 +04:00
parent 9a42abe2a7
commit cc3ca9a41e
5 changed files with 64 additions and 56 deletions

View File

@@ -19,7 +19,7 @@ struct DLL_LINKAGE TurnTimerInfo
int battleTimer = 0; //in ms, counts down during battles when creature timer runs out
int creatureTimer = 0; //in ms, counts down when player is choosing action in battle
bool isActive = true; //should be paused if set to false
bool isActive = false; //is being counting down
bool isBattle = false; //indicator for current timer mode
bool isEnabled() const;