コード例 #1
0
 public Sedan()
 {
     this.engineMgmnt  = new EngineManagement();
     this.comfortMgmnt = new ComfortManagement();
     this.climMode     = CLIMATE_MODE.off;
     this.OilLevel     = 6.0;
 }
コード例 #2
0
 // other methods
 public void ToggleClimateControlAutoButton()
 {
     this.climMode = (this.climMode != CLIMATE_MODE.auto) ? CLIMATE_MODE.auto : CLIMATE_MODE.manual;
 }