droppable items and win

This commit is contained in:
Rendo 2025-07-20 22:11:23 +05:00
commit 0e8fe3b76d
47 changed files with 814 additions and 79 deletions

View file

@ -0,0 +1,12 @@
using Godot;
[GlobalClass]
[Tool]
public abstract partial class RewardResource : Resource
{
[Export]
public PackedScene Scene { get; private set; }
[Export] public string Name { get; private set; }
[Export] public string Description { get; private set; }
public abstract PackedScene GetPreview();
}