From 1a28393dabf4f4696bf433ddde52e7a25253c955 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Thu, 16 Oct 2008 16:34:15 +0000 Subject: various user interface related updates --- src/core/netserver.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/netserver.h') diff --git a/src/core/netserver.h b/src/core/netserver.h index 1d2e131..8877707 100644 --- a/src/core/netserver.h +++ b/src/core/netserver.h @@ -53,7 +53,7 @@ public: /*----- mutators -------------------------------------------------- */ /// run a network server frame - void frame(float timestamp, float previoustimestamp); + void frame(unsigned long timestamp); /// receive data from clients void receive(); @@ -72,7 +72,7 @@ public: protected: /// send a server frame marker - void send_frame_marker(NetClient *client, float timestamp, float previoustimestamp); + void send_frame_marker(NetClient *client, unsigned long timestamp); /// send a create entity event void send_entity_create(NetClient *client, Entity *entity); @@ -105,7 +105,7 @@ protected: void parse_incoming_message(NetClient *client, const std::string & message); /// send a server frame to a single client - void client_frame(NetClient *client, float timestamp, float previoustimestamp); + void client_frame(NetClient *client, unsigned long timestamp); private: bool netserver_error; -- cgit v1.2.3