Esempio n. 1
0
 public void SetTimeToDay()
 {
     voiceHandler = new DayTimeHandler(storageRoot);
 }
Esempio n. 2
0
 public Case()
 {
     storageRoot  = new HabitationsGroup();
     voiceHandler = new DayTimeHandler(storageRoot);
 }
Esempio n. 3
0
 public void SetTimeToNight()
 {
     voiceHandler = new NightTimeHandler(storageRoot);
 }
Esempio n. 4
0
 public Case(HabitationsGroup unit)
 {
     storageRoot  = unit;
     voiceHandler = new DayTimeHandler(storageRoot);
 }