using GameCore.ECS; using GameCore.Events.Interfaces; namespace GameCore.Events; public readonly struct DamageDealtEvent(Entity target, float amount) : IEvent { public readonly Entity Target = target; public readonly float Amount = amount; }