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

10 lines
249 B
C#

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