Click or drag to resize
ComponentRemovedDelegateT Delegate
Delegate for registering for when a component of a specific type was removed.

Namespace: Slash.ECS.Components
Assembly: Slash.ECS (in Slash.ECS.dll) Version: 1.0.6018.40178
Syntax
public delegate void ComponentRemovedDelegate<in T>(
	int entityId,
	T component
)

Parameters

entityId
Type: SystemInt32
Id of entity the component was removed from.
component
Type: T
Component which was removed.

Type Parameters

T
Type of component to register for.
See Also