public GE_Dia_Line(DialogueLinePriority p, DialogueLineTag t, Speaker s, string d, string l, string n, Deeper_DialogueEvent_Base f)
 {
     type          = DialogueLineType.Standard;
     priority      = p;
     tag           = t;
     speaker       = s;
     description   = d;
     line          = l;
     audioFileName = n;
     followOnEvent = f;
 }
 public GE_Dia_Line(DialogueLinePriority p, DialogueLineTag t, Speaker s, string d, string c1, string c2, Deeper_DialogueEvent_Base c1E, Deeper_DialogueEvent_Base c2E)
 {
     type         = DialogueLineType.Choice;
     priority     = p;
     tag          = t;
     speaker      = s;
     description  = d;
     choice1      = c1;
     choice2      = c2;
     choice1Event = c1E;
     choice2Event = c2E;
 }