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

8 lines
258 B
Plaintext

type EvolutionData {
const Species& NewSpecies { get const; };
EvolutionMethod Method { get const; };
uint64 DataCount { get const; };
const narray<EffectParameter@>@ Data { get const; };
EffectParameter@ GetDataAt(uint64 index) const;
}