9 lines
208 B
C#
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;
|
|
} |