10 lines
No EOL
254 B
C#
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();
|
|
} |