public Constants() { last_updated = PokeConstants.LastModified; Gender = new _Gender(); Types = new _Types(); Weathers = new _Weathers(); Regions = new _Regions(); Availability = new _Availability(); Rarity = new _Rarity(); IV_Evaluation = new _IV_Evaluation(); Mappings = new _Mappings(); NumericChars = new _NumericChars(); CPMultipliers = new _CPMultipliers(); }
public Person(string name, _Gender gender) : this(name, 0, gender) { }
public Person(string name, int age, _Gender gender) { this.Name = name; this.Age = age; this.Gender = gender; }