示例#1
0
 /// <summary>
 /// Sets the state of this vehicle's lights
 /// </summary>
 public static void SetLights(this Vehicle vehicle, VehicleLightsState vehicleLightsState) => NativeWrappers.SetVehicleLights(vehicle, vehicleLightsState);
 /// <summary>
 /// Sets the state of the given vehicle's lights
 /// </summary>
 public static void SetVehicleLights(Vehicle vehicle, VehicleLightsState vehicleLightsState) => NativeFunction.Natives.SET_VEHICLE_LIGHTS(vehicle, (int)vehicleLightsState);