summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/Game.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-06 21:52:10 +0200
committerAki <please@ignore.pl>2022-04-06 21:54:35 +0200
commitb607369386ed3c410f9721a43b6145c9456af479 (patch)
treeacdf5539b55a46af71e7baf0c27c9c471b17d0f9 /StarsEx/Game.h
parent4d7ca74c55edff30e34df1c36824a128211bfeb8 (diff)
downloadstarshatter-b607369386ed3c410f9721a43b6145c9456af479.zip
starshatter-b607369386ed3c410f9721a43b6145c9456af479.tar.gz
starshatter-b607369386ed3c410f9721a43b6145c9456af479.tar.bz2
Removed member variable used to indicate server instance
Diffstat (limited to 'StarsEx/Game.h')
-rw-r--r--StarsEx/Game.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/StarsEx/Game.h b/StarsEx/Game.h
index b350e2c..9e589c2 100644
--- a/StarsEx/Game.h
+++ b/StarsEx/Game.h
@@ -58,7 +58,7 @@ public:
bool Active() { return active; }
bool Paused() { return paused; }
- bool Server() { return server; }
+ virtual bool Server() { return false; }
bool ShowMouse() { return show_mouse; }
virtual void PumpEvents();
@@ -76,7 +76,6 @@ protected:
bool active;
bool paused;
- bool server;
bool show_mouse;
DWORD frame_number;