Traveller/scripts/loot/LootDatum.cs
2024-06-16 22:44:50 +08:00

6 lines
175 B
C#

namespace ColdMint.scripts.loot;
public readonly record struct LootDatum(string ItemId, int Quantity)
{
public (string id, int quantity) Value => (ItemId, Quantity);
}