 | CompoundEntitiesTEntityRemovedDelegate Delegate |
Delegate for EntityRemoved event.
Namespace: Slash.Application.SystemsAssembly: Slash.Application (in Slash.Application.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic delegate void EntityRemovedDelegate(
int entityId,
T entity
)
Public Delegate Sub EntityRemovedDelegate (
entityId As Integer,
entity As T
)
public delegate void EntityRemovedDelegate(
int entityId,
T entity
)
type EntityRemovedDelegate =
delegate of
entityId : int *
entity : 'T -> unit
Parameters
- entityId
- Type: SystemInt32
Id of removed entity. - entity
- Type: T
Data of removed entity.
See Also