Skip to content

OnCargoShipHarborArrived

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnCargoShipHarborArrived( CargoShip instance )
{
    Puts( "OnCargoShipHarborArrived works!" );
}

Location

  • CargoShip::OnArrivedAtHarbor()
csharp
//---
	else if (harborIndex == 1)
	{
		SetFlag(Flags.Reserved4, b: true);
	}
	Invoke(LeaveHarbor, dock_time);
	Interface.CallHook("OnCargoShipHarborArrived", this);
}

Released under the MIT License.