mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
19 lines
504 B
C#
19 lines
504 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class MapContinentEntry
|
|
{
|
|
public uint Id;
|
|
public uint LocalizedTextIdName;
|
|
public string AssetPath;
|
|
public string ImagePath;
|
|
public uint ImageWidth;
|
|
public uint ImageHeight;
|
|
public uint ImageOffsetX;
|
|
public uint ImageOffsetY;
|
|
public uint HexMinX;
|
|
public uint HexMinY;
|
|
public uint HexLimX;
|
|
public uint HexLimY;
|
|
public uint Flags;
|
|
}
|
|
}
|