using GameCore.ECS; using GameCore.ECS.Interfaces; namespace GameCore.Physics; public class CollisionEventComponent(Entity otherEntity) : IComponent { public readonly Entity OtherEntity = otherEntity; }