9 lines
182 B
C#
9 lines
182 B
C#
using Godot;
|
|
|
|
namespace ColdMint.scripts.inventory;
|
|
|
|
public partial class LootData : GodotObject
|
|
{
|
|
public string? ResPath { get; set; }
|
|
public int Quantity { get; set; }
|
|
} |