public Dialogue(string speak, string sent, string[] choices, EndDialogueAction act)
 {
     Speaker  = speak;
     Sentence = sent;
     Choices  = choices;
     Action   = act;
 }
 public Dialogue(string speak, string sent, EndDialogueAction act) : this(speak, sent, new string[0], act)
 {
 }