10 lines
184 B
C#
10 lines
184 B
C#
|
namespace EntityStates.Treebot.Weapon;
|
||
|
|
||
|
public class ChargePlantSonicBoom : ChargeSonicBoom
|
||
|
{
|
||
|
protected override EntityState GetNextState()
|
||
|
{
|
||
|
return new FirePlantSonicBoom();
|
||
|
}
|
||
|
}
|