#ifndef OTCLIENT_CORE_DECLARATIONS_H #define OTCLIENT_CORE_DECLARATIONS_H #include #include "const.h" class Tile; class Thing; class Item; class Creature; class Effect; class Player; class LocalPlayer; typedef std::shared_ptr TilePtr; typedef std::shared_ptr ThingPtr; typedef std::shared_ptr ItemPtr; typedef std::shared_ptr CreaturePtr; typedef std::shared_ptr EffectPtr; typedef std::shared_ptr PlayerPtr; typedef std::shared_ptr LocalPlayerPtr; #endif