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