public void SetTimeToDay() { voiceHandler = new DayTimeHandler(storageRoot); }
public Case() { storageRoot = new HabitationsGroup(); voiceHandler = new DayTimeHandler(storageRoot); }
public void SetTimeToNight() { voiceHandler = new NightTimeHandler(storageRoot); }
public Case(HabitationsGroup unit) { storageRoot = unit; voiceHandler = new DayTimeHandler(storageRoot); }