Gen7Data/Scripts/Interfaces/MoveTurnChoice.as

8 lines
203 B
ActionScript
Raw Normal View History

shared interface MoveTurnChoice {
TurnChoiceKind Kind { get const; }
2021-03-28 18:22:46 +00:00
const Pokemon@ User { get const; }
LearnedMove@ Move { get const; }
int8 Priority { get const; }
BaseTurnChoice@ opImplCast();
}