mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
14 lines
422 B
C#
14 lines
422 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class Creature2DifficultyEntry
|
|
{
|
|
public uint Id;
|
|
public uint LocalizedTextIdTitle;
|
|
public float PathScientistScanMultiplier;
|
|
public float ClusterContributionValueDifficulty;
|
|
public uint RankValue;
|
|
public uint GroupValue;
|
|
[GameTableFieldArray(200)]
|
|
public float[] UnitPropertyMultiplier;
|
|
}
|
|
}
|