Example #1
0
 public MieQuestsNodeEntry(
     NNodeType questNode,
     int nodeID,
     bool isRootNode)
 {
     this.NodeType   = questNode;
     this.NodeID     = nodeID;
     this.IsRootNode = isRootNode;
 }
Example #2
0
 public MieChatterNodeEntry(
     NNodeType chatterNode,
     int nodeID,
     bool isRootNode)
 {
     this.NodeType   = chatterNode;
     this.NodeID     = nodeID;
     this.IsRootNode = isRootNode;
 }
Example #3
0
 public MieConversationNodeEntry(
     NNodeType nodeType,
     int nodeID,
     Guid speakerGuid,
     Guid listenerGuid,
     bool isRootNode,
     bool isQuestionNode)
 {
     this.NodeType       = nodeType;
     this.NodeID         = nodeID;
     this.SpeakerGuid    = speakerGuid;
     this.ListenerGuid   = listenerGuid;
     this.IsRootNode     = isRootNode;
     this.IsQuestionNode = isQuestionNode;
 }