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!
26 lines
536 B
C++
26 lines
536 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
* - 2007/04/07 MuadDib: send_object_cache_to_inrange updated from just UObject* to
|
|
* - const UObject* for compatibility across more areas.
|
|
*/
|
|
|
|
|
|
#ifndef __TOOLTIPS_H
|
|
#define __TOOLTIPS_H
|
|
|
|
namespace Pol
|
|
{
|
|
namespace Network
|
|
{
|
|
class Client;
|
|
}
|
|
namespace Core
|
|
{
|
|
class UObject;
|
|
void send_object_cache( Network::Client* client, const UObject* obj );
|
|
void send_object_cache_to_inrange( const UObject* obj );
|
|
void SendAOSTooltip( Network::Client* client, UObject* item, bool vendor_content = false );
|
|
}
|
|
}
|
|
#endif
|