Exemplo n.º 1
0
 public Player(string name, int id, string gender, int money, int posX, int posY, Location currentLocation, List <Possesion> inventory, List <Pokemon> pokemons, int wins, int losses, Pokecenter lastVistedPokeCenter)
     : base(name, id, gender, money, posX, posY, currentLocation, inventory, pokemons)
 {
     this.LastVisitedPokeCenter = lastVistedPokeCenter;
     this.Wins  = wins;
     this.Loses = losses;
 }
Exemplo n.º 2
0
 public void SetLastVistedPokeCenter(Pokecenter pokeCenter)
 {
     //implement in database;
     throw new NotImplementedException();
 }