mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
17 lines
402 B
C#
17 lines
402 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class CustomizationParameterEntry
|
|
{
|
|
public uint Id;
|
|
public uint LocalizedTextId;
|
|
public uint SclX;
|
|
public uint SclY;
|
|
public uint SclZ;
|
|
public uint RotX;
|
|
public uint RotY;
|
|
public uint RotZ;
|
|
public uint PosX;
|
|
public uint PosY;
|
|
public uint PosZ;
|
|
}
|
|
}
|