Beispiel #1
0
 public my_DialogOption(my_DialogOption another)
 {
     this.text         = another.text;
     this.returnStatus = another.returnStatus;
     this.nextDialog   = another.nextDialog;
     this.nextDialogId = another.nextDialogId;
     this.parentDialog = another.parentDialog;
 }
Beispiel #2
0
 public void AddDialogOption(my_DialogOption a_option)
 {
     a_option.parentDialog = this;
     this.options.Add(a_option);
 }
Beispiel #3
0
 //marking single forward conversation node
 public my_DialogNode(string text, string actorName, my_DialogOption singleOption)
 {
     this.text      = text;
     this.actorName = actorName;
     options.Add(singleOption);
 }