public Player(Guid id, string name, Exp xp) { this._name = name; this._id = id; this._xp = xp; }
public void AddExp(int exp) { this._xp = this._xp.AddExp(exp); }
public Player() { this._name = ""; this._xp = new Exp(); }