Delegate SetBoolProxy
Called when anything in the game tries to set a bool
Namespace: Modding.Delegates
Assembly: HollowKnight.dll
Syntax
public delegate bool SetBoolProxy(string name, bool orig)
Parameters
Type | Name | Description |
---|---|---|
string | name | The field being set |
bool | orig | The original value the bool was being set to |
Returns
Type | Description |
---|---|
bool | The bool, if overridden, else orig. |