Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-11-08 14:33:14 +0000
committerStijn Buys <ingar@osirion.org>2008-11-08 14:33:14 +0000
commit731dfb8f3ca9c34e4160021cb221c3056c00dbf9 (patch)
treecb8214aa1a8990dbb4b0e1ef4688eea030c76a52 /src/client/client.h
parent1317b6c1a231f5ccaf4ce11814863c77f93d8921 (diff)
finalized renaming from server namespace to dedicated
Diffstat (limited to 'src/client/client.h')
-rw-r--r--src/client/client.h13
1 files changed, 9 insertions, 4 deletions
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();
}