summaryrefslogtreecommitdiff
path: root/src/game.h
diff options
context:
space:
mode:
authorKahrl <kahrl@gmx.net>2011-12-03 09:01:14 +0100
committerPerttu Ahola <celeron55@gmail.com>2012-03-10 20:11:10 +0200
commit967f25461bbde28dbc0247fa1c491e9d9938a5b2 (patch)
treed1e26464862551db3f1d12627cdbe9e31fe211a9 /src/game.h
parent00536518142a586f3fc51a07f76e12085e3cbd30 (diff)
downloadminetest-967f25461bbde28dbc0247fa1c491e9d9938a5b2.tar.gz
minetest-967f25461bbde28dbc0247fa1c491e9d9938a5b2.tar.bz2
minetest-967f25461bbde28dbc0247fa1c491e9d9938a5b2.zip
Chat console, including a number of rebases and modifications.
Defaults modified from original: alpha=200, key=F10
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