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);
}