polserver/pol-core/pol/tooltips.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

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