AddPokemon() public method

public AddPokemon ( PokemonModel model ) : void
model PokemonModel
return void
Beispiel #1
0
 private static void ReadDataFolder(GameModeModel gameMode, string folderPath)
 {
     FileSystem.GetFiles(Path.Combine(folderPath, FolderNameData, FolderNameMoves), f => gameMode.AddMove(DataModel <MoveModel> .FromFile(f)));
     FileSystem.GetFiles(Path.Combine(folderPath, FolderNameData, FolderNamePokemon), f => gameMode.AddPokemon(DataModel <PokemonModel> .FromFile(f)));
 }
Beispiel #2
0
 private static void ReadDataFolder(GameModeModel gameMode, string folderPath)
 {
     FileSystem.GetFiles(Path.Combine(folderPath, FolderNameData, FolderNameMoves), f => gameMode.AddMove(DataModel<MoveModel>.FromFile(f)));
     FileSystem.GetFiles(Path.Combine(folderPath, FolderNameData, FolderNamePokemon), f => gameMode.AddPokemon(DataModel<PokemonModel>.FromFile(f)));
 }