static void Main(string[] args) { IPokemon myPokemon = ChoicePokemon(); IPokemonFoe foe = ChoiceFoe.ChoicePokemonFoe(myPokemon); myPokemon.SetFoe(foe); myPokemon.Go(); myPokemon.ChoiceAttack(); Console.ReadLine(); }