Gen7Data/Scripts/Interfaces/SwitchTurnChoice.as

7 lines
177 B
ActionScript
Raw Normal View History

shared interface SwitchTurnChoice {
TurnChoiceKind Kind { get const; }
2021-03-28 18:22:46 +00:00
const Pokemon@ User { get const; }
Pokemon@ NewPokemon { get const; }
BaseTurnChoice@ opImplCast();
}