Beispiel #1
0
 public Conversation(Output startingPoint)
 {
     this.StartingOutput = startingPoint;
 }
Beispiel #2
0
 public void SetStartingPoint(Output StartingPoint)
 {
     this.StartingOutput = StartingPoint;
 }
Beispiel #3
0
 public ConversationNode(Output output, List<Input> inputs)
 {
     this.output = output;
     this.inputs = inputs;
 }