 | CompositeChildRemovedDelegate Delegate |
Delegate for IComposite.ChildRemoved event.
Namespace: Slash.AI.BehaviorTrees.InterfacesAssembly: Slash.AI.BehaviorTrees (in Slash.AI.BehaviorTrees.dll) Version: 1.0.6018.40184
Syntaxpublic delegate void CompositeChildRemovedDelegate(
IComposite composite,
ITask childTask
)
Public Delegate Sub CompositeChildRemovedDelegate (
composite As IComposite,
childTask As ITask
)
public delegate void CompositeChildRemovedDelegate(
IComposite^ composite,
ITask^ childTask
)
type CompositeChildRemovedDelegate =
delegate of
composite : IComposite *
childTask : ITask -> unit
Parameters
- composite
- Type: Slash.AI.BehaviorTrees.InterfacesIComposite
Composite a child was removed from. - childTask
- Type: Slash.AI.BehaviorTrees.InterfacesITask
Child that was removed from composite.
See Also