Пример #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);
 }