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

13 lines
No EOL
416 B
C#

using System.Collections.Generic;
using WingsEmu.Game.Entities;
namespace WingsEmu.Game.Buffs.Events;
public class BuffRemoveEvent : IBattleEntityEvent
{
public IEnumerable<Buff> Buffs { get; init; }
public bool RemovePermanentBuff { get; init; }
public bool ShowMessage { get; init; } = true;
public bool RemoveFromGroupId { get; init; } = true;
public IBattleEntity Entity { get; init; }
}