newlon/addons/pvzadventure/RowSpawn.cs
2025-07-25 18:48:49 +05:00

10 lines
209 B
C#

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