Gen7Data/Scripts/Interfaces/Party.astypedef
Deukhoofd 40dcd8a407
Some checks failed
continuous-integration/drone/push Build is failing
Switch to astypedef, adds unit tests
2021-10-23 14:20:18 +02:00

6 lines
143 B
Plaintext

type Party {
const narray<Pokemon@>@ Pokemon { get const; };
uint64 Length { get const; };
Pokemon@ GetAtIndex(int index) const;
}