summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/Game.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-07 00:10:08 +0200
committerAki <please@ignore.pl>2022-04-07 00:10:08 +0200
commit7d00261f6b3bf7da2b9371796848883dc3b40392 (patch)
tree59b930c7e66b9377ee1a3cfb5761171d65b37574 /StarsEx/Game.h
parentfa8ad06c603036f224ce406c38c6fd44b2cd0deb (diff)
downloadstarshatter-7d00261f6b3bf7da2b9371796848883dc3b40392.zip
starshatter-7d00261f6b3bf7da2b9371796848883dc3b40392.tar.gz
starshatter-7d00261f6b3bf7da2b9371796848883dc3b40392.tar.bz2
Made Game accessors const and fixed minor formatting issues
Diffstat (limited to 'StarsEx/Game.h')
-rw-r--r--StarsEx/Game.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/StarsEx/Game.h b/StarsEx/Game.h
index 8a9caa8..50b3379 100644
--- a/StarsEx/Game.h
+++ b/StarsEx/Game.h
@@ -56,9 +56,9 @@ public:
DWORD Frame();
- bool Active() { return active; }
- bool Paused() { return paused; }
- virtual bool Server() { return false; }
+ bool Active() const { return active; }
+ bool Paused() const { return paused; }
+ virtual bool Server() const { return false; }
virtual void PumpEvents();
virtual void GameLoop();