示例#1
0
 public void SetTimeToDay()
 {
     voiceHandler = new DayTimeHandler(storageRoot);
 }
示例#2
0
 public Case()
 {
     storageRoot  = new HabitationsGroup();
     voiceHandler = new DayTimeHandler(storageRoot);
 }
示例#3
0
 public void SetTimeToNight()
 {
     voiceHandler = new NightTimeHandler(storageRoot);
 }
示例#4
0
 public Case(HabitationsGroup unit)
 {
     storageRoot  = unit;
     voiceHandler = new DayTimeHandler(storageRoot);
 }