コード例 #1
0
 public HouseInfo(bool roofExists, ERoofColor roofColor, bool chimneyExists, bool windowExists)
 {
     this.roofExists    = roofExists;
     this.roofColor     = roofColor;
     this.chimneyExists = chimneyExists;
     this.windowExists  = windowExists;
 }
コード例 #2
0
 public HouseInfo()
 {
     this.roofExists    = RandomBool();
     this.roofColor     = Random <ERoofColor>();
     this.chimneyExists = RandomBool();
     this.windowExists  = RandomBool();
 }