Zombie editor

This commit is contained in:
Rendo 2025-07-16 04:11:26 +05:00
commit 7d1ca26baa
23 changed files with 435 additions and 25 deletions

View file

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