AddPokemon() public method

public AddPokemon ( PokemonModel model ) : void
model PokemonModel
return void
Esempio n. 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)));
 }
Esempio n. 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)));
 }