10 lines
215 B
C#
10 lines
215 B
C#
|
namespace EntityStates.Engi.EngiMissilePainter;
|
||
|
|
||
|
public class BaseEngiMissilePainterState : BaseSkillState
|
||
|
{
|
||
|
public override InterruptPriority GetMinimumInterruptPriority()
|
||
|
{
|
||
|
return InterruptPriority.Pain;
|
||
|
}
|
||
|
}
|