Пример #1
0
 public Player(Guid id, string name, Exp xp)
 {
     this._name = name;
     this._id   = id;
     this._xp   = xp;
 }
Пример #2
0
 public void AddExp(int exp)
 {
     this._xp = this._xp.AddExp(exp);
 }
Пример #3
0
 public Player()
 {
     this._name = "";
     this._xp   = new Exp();
 }