server-master/srcs/WingsAPI.Game/BCard/IBCardEffectContext.cs
2026-02-10 18:21:30 +01:00

18 lines
No EOL
409 B
C#

using WingsEmu.DTOs.BCards;
using WingsEmu.Game.Battle;
using WingsEmu.Game.Entities;
using WingsEmu.Game.Helpers.Damages;
namespace WingsEmu.Game.Buffs;
/// <summary>
/// Bcard event context
/// </summary>
public interface IBCardEffectContext
{
IBattleEntity Sender { get; }
IBattleEntity Target { get; }
SkillInfo Skill { get; }
BCardDTO BCard { get; }
Position Position { get; }
}