r2mods/ilspy_dump/ror2_csproj/EntityStates.Treebot.Weapon/ChargePlantSonicBoom.cs

10 lines
184 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
namespace EntityStates.Treebot.Weapon;
public class ChargePlantSonicBoom : ChargeSonicBoom
{
protected override EntityState GetNextState()
{
return new FirePlantSonicBoom();
}
}