Gen7Data/Scripts/Interfaces/BaseTurnChoice.as

8 lines
191 B
ActionScript
Raw Normal View History

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