9 lines
118 B
C#
9 lines
118 B
C#
|
using RoR2;
|
||
|
|
||
|
namespace EntityStates;
|
||
|
|
||
|
public interface ISkillState
|
||
|
{
|
||
|
GenericSkill activatorSkillSlot { get; set; }
|
||
|
}
|