Working on inventory and crafting system. Translated Excel-Itemlist to .json.

This commit is contained in:
2026-05-05 15:35:42 +02:00
parent 02ba36b665
commit fc26fa2a75
11 changed files with 829 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
using Godot;
public abstract class Ingredient
{
public string name;
public int currentAmount;
public int stackSize;
}