Added basic inventory system

This commit is contained in:
cblech
2025-03-25 19:39:00 +01:00
parent 4f312209b3
commit 959ab68b4d
19 changed files with 298 additions and 1 deletions
@@ -0,0 +1,18 @@
using Godot;
namespace Babushka.scripts.CSharp.Common.Inventory;
[GlobalClass]
public partial class ItemResource: Resource
{
[Export]
public string name;
[Export]
public Color color;
public ItemResource()
{
name = "";
color = Colors.Red;
}
}