Example #1
0
    public DialogTreeNode(long index, string name, List <TreeBranch> branchList, List <TreeNodeFlagSet> flagSetList, DialogNodeContent content)
    {
        this.content = content;
        this.index   = index;
        this.name    = name;

        this.branchList  = branchList;
        this.flagSetList = flagSetList;
    }
Example #2
0
        public DialogTreeNode(long index, string name, List<TreeBranch> branchList, List<TreeNodeFlagSet> flagSetList, DialogNodeContent content)
        {
            this.content = content;
            this.index = index;
            this.name = name;

            this.branchList = branchList;
            this.flagSetList = flagSetList;
        }