server-master/srcs/WingsAPI.Game/Buffs/Events/BuffAddEvent.cs
2026-02-10 18:21:30 +01:00

17 lines
No EOL
375 B
C#

using System.Collections.Generic;
using WingsEmu.Game.Entities;
namespace WingsEmu.Game.Buffs.Events;
public class BuffAddEvent : IBattleEntityEvent
{
public BuffAddEvent(IBattleEntity entity, IEnumerable<Buff> buffs)
{
Entity = entity;
Buffs = buffs;
}
public IEnumerable<Buff> Buffs { get; }
public IBattleEntity Entity { get; }
}