protected BehaviorTreeBuilderBase(GameObject owner)
 {
     _tree = new BehaviorTree(owner);
     _pointer.Add(_tree.Root);
 }
        public T Splice(BehaviorTree tree)
        {
            _tree.Splice(Pointer, tree);

            return((T)this);
        }