10 lines
194 B
C#
10 lines
194 B
C#
|
namespace EntityStates.VoidRaidCrab;
|
||
|
|
||
|
public class VacuumWindUp : BaseVacuumAttackState
|
||
|
{
|
||
|
protected override void OnLifetimeExpiredAuthority()
|
||
|
{
|
||
|
outer.SetNextState(new VacuumAttack());
|
||
|
}
|
||
|
}
|