Delegate GetBoolProxy
Called when anything in the game tries to get a bool
Namespace: Modding.Delegates
Assembly: HollowKnight.dll
Syntax
public delegate bool GetBoolProxy(string name, bool orig)
Parameters
Type | Name | Description |
---|---|---|
string | name | The field being gotten |
bool | orig | The original value of the bool |
Returns
Type | Description |
---|---|
bool | The bool, if you are overriding it, otherwise orig. |