Files
brick-framework/GameCore/Events/DamageDealtEvent.cs

10 lines
251 B
C#

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;
}