Skip to content

OnSprinklerSplashed

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnSprinklerSplashed( Sprinkler instance )
{
    Puts( "OnSprinklerSplashed works!" );
}

Location

  • Sprinkler::DoSplash()
csharp
//---
		if (this.DecayPerSplash > 0f)
		{
			base.Hurt(this.DecayPerSplash);
		}
	}
	Interface.CallHook("OnSprinklerSplashed", this);
}

Released under the MIT License.