7 lines
196 B
ActionScript
7 lines
196 B
ActionScript
|
shared interface EvolutionData {
|
||
|
const Species& NewSpecies { get const; }
|
||
|
EvolutionMethod Method { get const; }
|
||
|
uint64 DataCount { get const; }
|
||
|
EffectParameter@ GetData(uint64 index) const;
|
||
|
}
|