server-master/srcs/WingsAPI.Game/Battle/Event/ProcessBuffEvent.cs
2026-02-10 18:21:30 +01:00

21 lines
No EOL
581 B
C#

using PhoenixLib.Events;
using WingsEmu.Game.Entities;
using WingsEmu.Game.Helpers.Damages;
namespace WingsEmu.Game.Battle;
public class ProcessBuffEvent : IAsyncEvent
{
public ProcessBuffEvent(IBattleEntity caster, IBattleEntity target, SkillCast skillCast, Position position = default)
{
Caster = caster;
Target = target;
SkillCast = skillCast;
Position = position;
}
public IBattleEntity Caster { get; }
public IBattleEntity Target { get; }
public SkillCast SkillCast { get; }
public Position Position { get; }
}