This commit is contained in:
2026-06-24 11:58:06 +02:00
parent 9a6566a178
commit 8f2912a174
32 changed files with 203 additions and 98 deletions

16
src/Data/NoduleStats.cs Normal file
View File

@@ -0,0 +1,16 @@
using Godot;
namespace Slimepire.Data;
[GlobalClass]
public partial class NoduleStats : Resource
{
[Export]
public SpriteFrames SpriteFrames;
[Export]
public Color Color;
[Export]
public string NoduleName = "Nodule";
}