Gen7Data/Scripts/Interfaces/BaseTurnChoice.astypedef

8 lines
196 B
Plaintext
Raw Normal View History

2021-10-23 12:20:18 +00:00
type BaseTurnChoice {
TurnChoiceKind Kind { get const; };
const Pokemon@ User { get const; };
MoveTurnChoice@ opCast();
SwitchTurnChoice@ opCast();
FleeTurnChoice@ opCast();
}