Beispiel #1
0
 public SetMoodParams(string characterName, Mood modifier)
 {
     this.characterName = characterName;
     this.modifier      = modifier;
 }
Beispiel #2
0
 public CharacterMood(int id, string name, Mood mood)
 {
     this.Id   = id;
     this.Name = name;
     this.Mood = mood;
 }