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,6 @@
namespace Babushka.scripts.CSharp.Common.Inventory;
public class ItemInstance
{
public ItemResource blueprint;
}