summaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/game.h b/src/game.h
index 2aaabf96..19a6054a 100644
--- a/src/game.h
+++ b/src/game.h
@@ -33,7 +33,6 @@
#define SPEECH_MAX_TIME 100
class MessageHandler;
-class Network;
extern std::string map_path;
extern volatile int fps;
@@ -42,7 +41,7 @@ extern volatile int tick_time;
class Game : public ConfigListener
{
public:
- Game(Network *network);
+ Game();
~Game();
void logic();
@@ -52,8 +51,6 @@ class Game : public ConfigListener
void optionChanged(const std::string &name);
private:
- Network *mNetwork;
-
/** Used to determine whether to draw the next frame. */
int mDrawTime;