Files
brick-framework/GameCore/Physics/CollisionEventComponent.cs

9 lines
208 B
C#

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