18 lines
No EOL
409 B
C#
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; }
|
|
} |