From 731dfb8f3ca9c34e4160021cb221c3056c00dbf9 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 8 Nov 2008 14:33:14 +0000 Subject: finalized renaming from server namespace to dedicated --- src/client/client.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src/client/client.h') diff --git a/src/client/client.h b/src/client/client.h index 6fb294d..33f64e5 100644 --- a/src/client/client.h +++ b/src/client/client.h @@ -13,6 +13,9 @@ /// client part of the engine namespace client { +/// run the client application +void run(int count, char **arguments); + /// client application implementation class Client : public core::Application { @@ -61,15 +64,17 @@ protected: virtual void frame(unsigned long timestamp); private: + + static void func_snd_restart(std::string const &args); + static void func_r_restart(std::string const &args); + static void func_ui_chat(std::string const &args); + static void func_ui_chatsmall(std::string const &args); + View *client_view; unsigned long previous_timestamp; }; - -/// the client main loop -void client_main(int count, char **arguments); - Client *client(); } -- cgit v1.2.3