コード例 #1
0
ファイル: Player.cs プロジェクト: FIFARadiusStagaires/Pokemon
 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;
 }
コード例 #2
0
ファイル: Player.cs プロジェクト: FIFARadiusStagaires/Pokemon
 public void SetLastVistedPokeCenter(Pokecenter pokeCenter)
 {
     //implement in database;
     throw new NotImplementedException();
 }