abf03c00a1
初步重写掉落系统
8 lines
189 B
C#
8 lines
189 B
C#
using Godot;
|
|
|
|
namespace ColdMint.scripts.loot;
|
|
|
|
public readonly record struct LootDatum(string ItemId, int Quantity)
|
|
{
|
|
public (string id, int quantity) Value => (ItemId, Quantity);
|
|
} |