nexusforever/Source/NexusForever.Shared/GameTable/Model/QuestObjectiveEntry.cs
2018-10-09 12:03:35 +13:00

20 lines
629 B
C#

namespace NexusForever.Shared.GameTable.Model
{
public class QuestObjectiveEntry
{
public uint Id;
public uint Type;
public uint Flags;
public uint Data;
public uint Count;
public uint LocalizedTextIdFull;
public uint WorldLocationsIdIndicator00;
public uint WorldLocationsIdIndicator01;
public uint WorldLocationsIdIndicator02;
public uint WorldLocationsIdIndicator03;
public uint MaxTimeAllowedMS;
public uint LocalizedTextIdShort;
public uint TargetGroupIdRewardPane;
public uint QuestDirectionId;
}
}