polserver/pol-core/pol/statmsg.h
turley 189cad3479 Formating everything
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!
2016-02-19 19:26:35 +01:00

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