10 lines
169 B
C#
10 lines
169 B
C#
|
namespace EntityStates;
|
||
|
|
||
|
public class LockSkill : BaseState
|
||
|
{
|
||
|
public override InterruptPriority GetMinimumInterruptPriority()
|
||
|
{
|
||
|
return InterruptPriority.Death;
|
||
|
}
|
||
|
}
|