6 lines
224 B
C#
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);
|
|
}
|