OnSprinklerSplashed
Usage
- No return behavior
Example Autogenerated
csharp
private void OnSprinklerSplashed( Sprinkler instance )
{
Puts( "OnSprinklerSplashed works!" );
}Location
- Sprinkler::DoSplash()
csharp
//---
if (DecayPerSplash > 0f)
{
Hurt(DecayPerSplash);
}
}
Interface.CallHook("OnSprinklerSplashed", this);
bool CanEverSplashEntity(BaseEntity targetEnt, out ISplashable reference)
{
reference = null;
if (targetEnt.isClient)
{
//---