CanLightCannonFuse
Usage
- Return a bool value to override default behavior
Example Autogenerated
csharp
private bool? CanLightCannonFuse( Cannon instance )
{
Puts( "CanLightCannonFuse works!" );
return null;
}Location
- Cannon::CanLightFuse()
csharp
private bool CanLightFuse()
{
object obj = Interface.CallHook("CanLightCannonFuse", this);
if (obj is bool)
{
return (bool)obj;
}
return !HasFlag(Flags.Reserved6);
//---