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

11 lines
No EOL
351 B
C#

using WingsEmu.DTOs.BCards;
using WingsEmu.Game.Battle;
using WingsEmu.Game.Entities;
using WingsEmu.Game.Helpers.Damages;
namespace WingsEmu.Game.Buffs;
public interface IBCardEventContextFactory
{
IBCardEffectContext NewContext(IBattleEntity sender, IBattleEntity target, BCardDTO bCard, SkillInfo skill = null, Position position = default);
}