コード例 #1
0
 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();
 }
コード例 #2
0
 public Person(string name, _Gender gender) : this(name, 0, gender)
 {
 }
コード例 #3
0
 public Person(string name, int age, _Gender gender)
 {
     this.Name   = name;
     this.Age    = age;
     this.Gender = gender;
 }