mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
17 lines
409 B
C++
17 lines
409 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
#ifndef __UFUNCSTD_H
|
|
#define __UFUNCSTD_H
|
|
namespace Pol
|
|
{
|
|
namespace Core
|
|
{
|
|
void send_sysmessage( Network::Client* client, const std::string& text, unsigned short font = 3,
|
|
unsigned short color = 0x3B2 );
|
|
void send_nametext( Network::Client* client, const Mobile::Character* chr, const std::string& str );
|
|
} // namespace Core
|
|
} // namespace Pol
|
|
#endif
|