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

10 lines
184 B
C#

namespace EntityStates.Treebot.Weapon;
public class ChargePlantSonicBoom : ChargeSonicBoom
{
protected override EntityState GetNextState()
{
return new FirePlantSonicBoom();
}
}