mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
36 lines
1.2 KiB
C#
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;
|
|
}
|
|
}
|