Skip to content

OnEngineLoadoutRefresh

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private void OnEngineLoadoutRefresh( EngineStorage instance )
{
    Puts( "OnEngineLoadoutRefresh works!" );
}

Location

  • Rust.Modular.EngineStorage::RefreshLoadoutData()
csharp
public void RefreshLoadoutData()
{
	if (Interface.CallHook("OnEngineLoadoutRefresh", this) != null)
	{
		return;
	}
	bool arg_4F_1;
	if (base.inventory.IsFull())
//---

Released under the MIT License.