qstbak/LLib/LLib.Gear/ItemRankingKey.cs
2026-08-17 20:29:32 +10:00

6 lines
224 B
C#

namespace LLib.Gear;
public readonly record struct ItemRankingKey(uint ItemLevel, float Score, short Damage)
{
public static readonly ItemRankingKey None = new ItemRankingKey(0u, float.NegativeInfinity, short.MinValue);
}