Gen7Data/Scripts/Interfaces/BattleSide.as

7 lines
198 B
ActionScript
Raw Normal View History

2021-03-28 18:22:46 +00:00
shared interface BattleSide {
bool SwapPositions(uint8 a, uint8 b);
uint8 SideIndex { get const; }
uint8 GetPokemonIndex(const Pokemon@ pokemon) const;
2021-08-25 19:18:41 +00:00
Pokemon@ GetPokemon(uint8 index) const;
2021-03-28 18:22:46 +00:00
}