mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Authors are not forced to use the clang-format setting, but should atleast be inspired by the style. The only thing which is now not allowed are tabs for ident/alignment!
28 lines
478 B
C++
28 lines
478 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#ifndef __STATMSG_H
|
|
#define __STATMSG_H
|
|
|
|
namespace Pol
|
|
{
|
|
namespace Network
|
|
{
|
|
class Client;
|
|
}
|
|
namespace Mobile
|
|
{
|
|
class Character;
|
|
}
|
|
namespace Core
|
|
{
|
|
void send_full_statmsg( Network::Client* client, Mobile::Character* chr );
|
|
void send_short_statmsg( Network::Client* client, Mobile::Character* chr );
|
|
void send_update_hits_to_inrange( Mobile::Character* chr );
|
|
void send_stat_locks( Network::Client* client, Mobile::Character* chr );
|
|
}
|
|
}
|
|
#endif
|