mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-11 21:55:55 +00:00
10 lines
179 B
C#
10 lines
179 B
C#
|
|
using Godot;
|
|||
|
|
|
|||
|
|
namespace Cirno.Scripts.Resources;
|
|||
|
|
|
|||
|
|
[GlobalClass]
|
|||
|
|
public partial class LootItem : Resource
|
|||
|
|
{
|
|||
|
|
[Export] public ItemTypes Item;
|
|||
|
|
[Export] public int Amount;
|
|||
|
|
}
|