Skip to content

CanLightCannonFuse

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private void CanLightCannonFuse( Cannon instance )
{
    Puts( "CanLightCannonFuse works!" );
}

Location

  • Cannon::CanLightFuse()
csharp
private bool CanLightFuse()
{
	object returnvar = Interface.CallHook("CanLightCannonFuse", this);
	if (returnvar is bool)
	{
		return (bool)returnvar;
	}
	return !base.HasFlag(BaseEntity.Flags.Reserved6);
//---

Released under the MIT License.