nexusforever/Source/NexusForever.Shared/GameTable/Model/TargetGroupEntry.cs
Kirmmin df5de43de6 Quest/Core: TargetGroup Basic Support, ObjectiveType Research
TargetGroup Support

ObjectiveType comment update
2020-04-15 18:59:00 -07:00

11 lines
265 B
C#

namespace NexusForever.Shared.GameTable.Model
{
public class TargetGroupEntry
{
public uint Id;
public uint LocalizedTextIdDisplayString;
public uint Type;
[GameTableFieldArray(7u)]
public uint[] DataEntries;
}
}