11 lines
No EOL
229 B
C#
11 lines
No EOL
229 B
C#
namespace WingsEmu.Game.Buffs;
|
|
|
|
/// <summary>
|
|
/// Handlers of an BCardEventContext
|
|
/// </summary>
|
|
public interface IBCardEffectAsyncHandler
|
|
{
|
|
BCardType HandledType { get; }
|
|
|
|
void Execute(IBCardEffectContext ctx);
|
|
} |