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

10 lines
No EOL
254 B
C#

using WingsEmu.Game.Battle;
namespace WingsEmu.Game.Skills;
public interface IAngelElementBuffComponent
{
public ElementType? AngelElement { get; }
public void AddAngelElement(ElementType elementType);
public void RemoveAngelElement();
}