mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
17 lines
493 B
C#
17 lines
493 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class UnitProperty2Entry
|
|
{
|
|
public uint Id;
|
|
public string Description;
|
|
public string EnumName;
|
|
public float DefaultValue;
|
|
public uint LocalizedTextId;
|
|
public float ValuePerPoint;
|
|
public uint Flags;
|
|
public uint TooltipDisplayOrder;
|
|
public uint ProfiencyFlagEnum;
|
|
public uint ItemCraftingGroupFlagBitMask;
|
|
public uint EquippedSlotFlags;
|
|
}
|
|
}
|