diff options
author | Nipun Garg | 2019-06-28 20:58:08 +0530 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:03 +0200 |
commit | 437b9a86a1a5f75c8fa71902c78bcc2e46e6361c (patch) | |
tree | 7eaf258dc9c707905c86f580cd16612352be21ba /engines/hdb | |
parent | 1370cf8b9db640c04d607ca33d9e5419baf1ccf0 (diff) | |
download | scummvm-rg350-437b9a86a1a5f75c8fa71902c78bcc2e46e6361c.tar.gz scummvm-rg350-437b9a86a1a5f75c8fa71902c78bcc2e46e6361c.tar.bz2 scummvm-rg350-437b9a86a1a5f75c8fa71902c78bcc2e46e6361c.zip |
HDB: Add getter-setter for _gameState
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/hdb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h index 8948c0c9a4..0cfa08f728 100644 --- a/engines/hdb/hdb.h +++ b/engines/hdb/hdb.h @@ -145,6 +145,12 @@ public: bool init(); void start(); + void setGameState(GameState gs) { + _gameState = gs; + } + GameState getGameState() { + return _gameState; + } void changeGameState(); void paint(); |