Gen7Data/Scripts/Interfaces/Species.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

10 lines
293 B
Plaintext

type Species {
const constString& Name { get const; };
uint16 Id { get const; };
float GenderRate { get const; };
uint8 CaptureRate { get const; };
const Forme@ DefaultForme { get const; };
Gender GetRandomGender() const;
const Forme@ GetForme(string key) const;
}