(svn r14047) -Codechange: move chatmessage handling to the network directory as that's the only case chat messages are used. Furthermore remove any trace of chatmessages when compiling without network support.

This commit is contained in:
rubidium
2008-08-11 22:45:11 +00:00
parent 6995365535
commit d0c1a989a4
17 changed files with 531 additions and 491 deletions

View File

@@ -11,6 +11,7 @@
void NetworkStartUp();
void NetworkShutDown();
void NetworkDrawChatMessage();
extern bool _networking; ///< are we in networking mode?
extern bool _network_server; ///< network-server is active
@@ -23,6 +24,7 @@ extern bool _is_network_server; ///< Does this client wants to be a network-ser
static inline void NetworkStartUp() {}
static inline void NetworkShutDown() {}
static inline void NetworkDrawChatMessage() {}
#define _networking 0
#define _network_server 0