mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
20 lines
629 B
C#
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;
|
|
}
|
|
}
|