LogicSpawn.GTARPG.Core.AbilityTrees.NTree.NTree C# (CSharp) Method

NTree() public method

public NTree ( string treeRef, Node node, TreeType type, Point startingPosition ) : System
treeRef string
node Node
type TreeType
startingPosition Point
return System
        public NTree(string treeRef, Node node, TreeType type, Point startingPosition)
        {
            TreeRef = treeRef;
            Node = node;
            Type = type;
            Node.Position = startingPosition;
            children = new List<NTree>();
        }

Same methods

NTree::NTree ( Node node ) : System
NTree::NTree ( Node node, TreeType type, Point startingPosition ) : System