aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/hdb.h
diff options
context:
space:
mode:
authorNipun Garg2019-06-28 20:58:08 +0530
committerEugene Sandulenko2019-09-03 17:17:03 +0200
commit437b9a86a1a5f75c8fa71902c78bcc2e46e6361c (patch)
tree7eaf258dc9c707905c86f580cd16612352be21ba /engines/hdb/hdb.h
parent1370cf8b9db640c04d607ca33d9e5419baf1ccf0 (diff)
downloadscummvm-rg350-437b9a86a1a5f75c8fa71902c78bcc2e46e6361c.tar.gz
scummvm-rg350-437b9a86a1a5f75c8fa71902c78bcc2e46e6361c.tar.bz2
scummvm-rg350-437b9a86a1a5f75c8fa71902c78bcc2e46e6361c.zip
HDB: Add getter-setter for _gameState
Diffstat (limited to 'engines/hdb/hdb.h')
-rw-r--r--engines/hdb/hdb.h6
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();