nexusforever/Source/NexusForever.Shared/GameTable/Model/UnitVehicleEntry.cs
2018-10-09 12:03:35 +13:00

36 lines
1.2 KiB
C#

namespace NexusForever.Shared.GameTable.Model
{
public class UnitVehicleEntry
{
public uint Id;
public uint VehicleTypeEnum;
public uint NumberPilots;
public uint PilotPosture00;
public uint PilotPosture01;
public uint NumberPassengers;
public uint PassengerPosture00;
public uint PassengerPosture01;
public uint PassengerPosture02;
public uint PassengerPosture03;
public uint PassengerPosture04;
public uint PassengerPosture05;
public uint NumberGunners;
public uint GunnerPosture00;
public uint GunnerPosture01;
public uint GunnerPosture02;
public uint GunnerPosture03;
public uint GunnerPosture04;
public uint GunnerPosture05;
public uint VendorItemPrice;
public uint LocalizedTextIdName;
public uint LocalizedTextIdTooltip;
public string ButtonIcon;
public uint Flags;
public uint SoundEventIdTakeoff;
public uint SoundEventIdLanding;
public uint WaterSurfaceEffectIdMoving;
public uint WaterSurfaceEffectIdStanding;
public uint WaterSurfaceEffectIdJumpIn;
public uint WaterSurfaceEffectIdJumpOut;
}
}