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, 4 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h
index a9db6c3e1..01e955ecd 100644
--- a/src/game.h
+++ b/src/game.h
@@ -122,6 +122,8 @@ public:
virtual void clear() {};
};
+class ChatBackend; /* to avoid having to include chat.h */
+
void the_game(
bool &kill,
bool random_input,
@@ -134,7 +136,8 @@ void the_game(
std::string address,
u16 port,
std::wstring &error_message,
- std::string configpath
+ std::string configpath,
+ ChatBackend &chat_backend
);
#endif