mta-mono/MultiTheftAuto/VehicleWheelsState.cs

25 lines
525 B
C#
Raw Normal View History

2015-12-12 10:10:23 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MultiTheftAuto
{
public class VehicleWheelsState
{
public byte FrontLeft;
public byte RearLeft;
public byte FrontRight;
public byte RearRight;
public VehicleWheelsState( byte frontLeft, byte rearLeft, byte frontRight, byte rearRight )
{
this.FrontLeft = frontLeft;
this.RearLeft = rearLeft;
this.FrontRight = frontRight;
this.RearRight = rearRight;
}
}
}