using GameCore.ECS; using GameCore.Events.Interfaces; namespace GameCore.Events; public readonly struct DoorLockedEvent(Entity doorEntity, Entity interactor) : IEvent { public readonly Entity DoorEntity = doorEntity; public readonly Entity Interactor = interactor; }