25.03.2013, 19:09
As I realized Player class is nothing more than a nice interface, I did something like this:
pawn Код:
class MyPlayer :
public Player
{
explicit MyPlayer(int x) : Player(x) { }
};