Wave display

This commit is contained in:
Rendo 2025-07-05 21:59:02 +05:00
commit 96e6a20e95
10 changed files with 188 additions and 5 deletions

View file

@ -0,0 +1,8 @@
using Godot;
using System;
public partial class FieldSpawn : Resource
{
[Export] public PackedScene scene;
[Export] public Vector2 position;
}