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; }
public void SetLastVistedPokeCenter(Pokecenter pokeCenter) { //implement in database; throw new NotImplementedException(); }