Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/netserver.h')
-rw-r--r--src/core/netserver.h6
1 files changed, 3 insertions, 3 deletions
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;