/// <summary> /// Emptys the Hashset containing the users mode /// </summary> public void ResetMood() { CurrentMood.Clear(); }
/// <summary> /// Adds a new mood to the user. /// </summary> /// <param name="moodType">Which MoodType to add. Duplicates will not be stored.</param> public void AddMood(MoodType moodType) { CurrentMood.Add(moodType); }