summaryrefslogtreecommitdiff
path: root/src/network/network.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/network.h')
-rw-r--r--src/network/network.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/network/network.h b/src/network/network.h
index 3dd63d03c..26f94482e 100644
--- a/src/network/network.h
+++ b/src/network/network.h
@@ -18,6 +18,7 @@
void NetworkStartUp();
void NetworkShutDown();
void NetworkDrawChatMessage();
+bool HasClients();
extern bool _networking; ///< are we in networking mode?
extern bool _network_server; ///< network-server is active
@@ -31,6 +32,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() {}
+static inline bool HasClients() { return false; }
#define _networking 0
#define _network_server 0