コード例 #1
0
ファイル: GameData.cs プロジェクト: sunoru/PBO
 /// <summary>
 /// existing SpriteType with the same id will be overwritten
 /// </summary>
 public void AddPokemonType(PokemonType pokemon)
 {
     Contract.Requires(pokemon != null);
       pokemons[pokemon.Id] = pokemon;
 }
コード例 #2
0
ファイル: RomData.cs プロジェクト: sunoru/PBO
 /// <summary>
 /// existing SpriteType with the same id will be overwritten
 /// </summary>
 public void AddPokemonType(PokemonType pokemon)
 {
     Pokemons[pokemon.Id] = pokemon;
 }