2020-09-19 15:44:06 +00:00
|
|
|
shared interface MoveTurnChoice {
|
|
|
|
TurnChoiceKind Kind { get const; }
|
2021-05-13 12:32:56 +00:00
|
|
|
Pokemon@ User { get const; }
|
2020-09-19 15:44:06 +00:00
|
|
|
LearnedMove@ Move { get const; }
|
|
|
|
int8 Priority { get const; }
|
|
|
|
BaseTurnChoice@ opImplCast();
|
|
|
|
}
|