tibia-client/src/otclient/core/player.h

16 lines
244 B
C
Raw Normal View History

2011-08-15 16:11:24 +02:00
#ifndef PLAYER_H
#define PLAYER_H
#include "creature.h"
class Player : public Creature
{
public:
2011-08-15 23:02:52 +02:00
Player() { }
virtual ~Player() { }
2011-08-15 16:11:24 +02:00
2011-08-15 23:02:52 +02:00
PlayerPtr asPlayer() { return std::static_pointer_cast<Player>(shared_from_this()); }
2011-08-15 16:11:24 +02:00
};
#endif