Traveller/scripts/loot/LootDatum.cs

8 lines
189 B
C#
Raw Normal View History

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