Ejemplo n.º 1
0
 /// <summary>
 /// Emptys the Hashset containing the users mode
 /// </summary>
 public void ResetMood()
 {
     CurrentMood.Clear();
 }
Ejemplo n.º 2
0
 /// <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);
 }