Spawn items

This commit is contained in:
2024-08-28 21:48:05 -07:00
parent 699a333951
commit ea99e88535
25 changed files with 715 additions and 134 deletions

12
src/items/ItemDatabase.cs Normal file
View File

@@ -0,0 +1,12 @@
using Godot;
namespace GameJamDungeon
{
public partial class ItemDatabase : Node
{
[Export]
public PackedScene[] ItemScene;
[Export]
public float[] DropRate;
}
}