droppable items and win

This commit is contained in:
Rendo 2025-07-20 22:11:23 +05:00
commit 5bdbfa4d82
47 changed files with 820 additions and 85 deletions

View file

@ -0,0 +1,13 @@
using Godot;
[GlobalClass]
[Tool]
public partial class MoneyReward : RewardResource
{
[Export] public int Cost;
public override PackedScene GetPreview()
{
return Scene;
}
}