8 lines
196 B
Plaintext
8 lines
196 B
Plaintext
type BaseTurnChoice {
|
|
TurnChoiceKind Kind { get const; };
|
|
const Pokemon@ User { get const; };
|
|
MoveTurnChoice@ opCast();
|
|
SwitchTurnChoice@ opCast();
|
|
FleeTurnChoice@ opCast();
|
|
}
|