Update server.h

This commit is contained in:
Ian Giestas Pauli 2017-01-27 22:23:56 -02:00 committed by GitHub
parent 8e2eb08948
commit b57bc59c94
1 changed files with 3 additions and 1 deletions

View File

@ -236,6 +236,8 @@ public:
// Envlock
s32 playSound(const SimpleSoundSpec &spec, const ServerSoundParams &params);
void stopSound(s32 handle);
void pauseSound(s32 handle);
void resumeSound(s32 handle);
// Envlock
std::set<std::string> getPlayerEffectivePrivs(const std::string &name);
@ -576,6 +578,7 @@ private:
float m_time_of_day_send_timer;
// Uptime of server in seconds
MutexedVariable<double> m_uptime;
/*
Client interface
*/
@ -661,4 +664,3 @@ private:
void dedicated_server_loop(Server &server, bool &kill);
#endif