예제 #1
0
 public SequenceNode(string text, bool receive, string talker = "", bool raro = false)
 {
     this.type    = SequenceNodeType.SMS;
     this.text    = text;
     this.talker  = talker;
     this.receive = receive;
     this.raro    = raro;
 }
예제 #2
0
 public SequenceNode(string text, int[] talkers)
 {
     this.type    = SequenceNodeType.DIALOG;
     this.text    = text;
     this.talkers = talkers;
 }
예제 #3
0
 public SequenceNode(string action)
 {
     this.type = SequenceNodeType.ACTION;
     this.text = action;
 }