14 lines
802 B
C#
14 lines
802 B
C#
namespace MoonTools.ECS.Rev2.Compatibility;
|
|
|
|
public class Manipulator : EntityComponentReader
|
|
{
|
|
public Manipulator(World world) : base(world) { }
|
|
|
|
protected void Set<TComponent>(in EntityId entity, in TComponent component) where TComponent : unmanaged => World.Set<TComponent>(entity, component);
|
|
protected void Remove<TComponent>(in EntityId entity) where TComponent : unmanaged => World.Remove<TComponent>(entity);
|
|
|
|
protected void Unrelate<TRelationKind>(in EntityId entityA, in EntityId entityB) where TRelationKind : unmanaged => World.Unrelate<TRelationKind>(entityA, entityB);
|
|
protected void UnrelateAll<TRelationKind>(in EntityId entity) where TRelationKind : unmanaged => World.UnrelateAll<TRelationKind>(entity);
|
|
protected void Destroy(in EntityId entity) => World.Destroy(entity);
|
|
}
|