nexusforever/Source/NexusForever.Shared/GameTable/Model/WorldSocketEntry.cs
kirmmin 1f7cbbf8ab Housing/Fix: Decor offset resolved (#207)
* Housing/Fix: Decor offset resolved

Allow for PlotIndex saving

Add PlotIndex validation for Position
HousingResult added for handling errors & validation on placement

* Small cleanup.
2019-11-25 20:27:30 +13:00

11 lines
250 B
C#

namespace NexusForever.Shared.GameTable.Model
{
public class WorldSocketEntry
{
public uint Id;
public uint WorldId;
[GameTableFieldArray(4u)]
public uint[] BoundIds;
public uint AverageHeight;
}
}