2024-06-16 14:44:50 +00:00
|
|
|
|
namespace ColdMint.scripts.loot;
|
2024-06-16 08:56:45 +00:00
|
|
|
|
|
2024-06-22 15:29:24 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>LootDatum</para>
|
|
|
|
|
/// <para>战利品数据</para>
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ItemId"></param>
|
|
|
|
|
/// <param name="Quantity"></param>
|
2024-06-16 08:56:45 +00:00
|
|
|
|
public readonly record struct LootDatum(string ItemId, int Quantity)
|
|
|
|
|
{
|
|
|
|
|
public (string id, int quantity) Value => (ItemId, Quantity);
|
|
|
|
|
}
|