Exemple #1
0
 /// <summary>
 /// Creates a new Speaker object.
 /// </summary>
 /// <remarks>
 /// This is the good constructor!! :)
 /// </remarks>
 public Speaker(string avatarName, string msg, Dictionary<string, int> choices, string prompt, TextRevealStyle style)
 {
     this.AvatarName = avatarName;
     this.Message = msg;
     this.Choices = choices;
     this.RevealStyle = style;
     this.ChoicesPrompt = prompt;
 }
Exemple #2
0
 /// <summary>
 /// Empty Constructor
 /// </summary>
 /// <remarks>
 /// DON'T USE THIS CONSTRUCTOR!!
 /// This is needed for the XNB Asset Compiler. -_-'
 /// </remarks>
 public Speaker()
 {
     this.Message = "";
     this.Choices = null;
     this.AvatarName = "";
     this.ChoicesPrompt = "";
     this.RevealStyle = TextRevealStyle.Normal;
 }