newlon/addons/pvzadventure/RowSpawn.cs
2025-07-16 04:11:26 +05:00

9 lines
185 B
C#

using Godot;
using Godot.Collections;
[Tool]
[GlobalClass]
public partial class RowSpawn : Resource
{
[Export] public Array<ZombieResource> zombies = new(new ZombieResource[5]);
}