allow Manipulator to send messages

main
cosmonaut 2024-01-18 15:58:28 -08:00
parent 9b90d47d01
commit 0d567f1854
1 changed files with 2 additions and 0 deletions

View File

@ -15,4 +15,6 @@ public abstract class Manipulator : EntityComponentReader
protected void Unrelate<TRelationKind>(in Entity entityA, in Entity entityB) where TRelationKind : unmanaged => World.Unrelate<TRelationKind>(entityA, entityB);
protected void UnrelateAll<TRelationKind>(in Entity entity) where TRelationKind : unmanaged => World.UnrelateAll<TRelationKind>(entity);
protected void Destroy(in Entity entity) => World.Destroy(entity);
protected void Send<TMessage>(in TMessage message) where TMessage : unmanaged => World.Send(message);
}