初次提交

This commit is contained in:
m0_75251201
2025-07-12 11:30:22 +08:00
commit 7700703099
1156 changed files with 21532 additions and 0 deletions

View File

@ -0,0 +1,11 @@
using Godot;
using System;
[GlobalClass]
public partial class ItemResource : Resource
{
[Export] public string ItemName{ get; private set; }
[Export] public string Description{ get; private set; }
[Export] public Texture2D Icon{ get; private set; }
[Export] public bool Stackable{ get; private set; }
}