FluentBehaviourTree.SequenceNode.AddChild C# (CSharp) Method

AddChild() public method

Add a child to the sequence.
public AddChild ( IBehaviourTreeNode child ) : void
child IBehaviourTreeNode
return void
        public void AddChild(IBehaviourTreeNode child)
        {
            children.Add(child);
        }