newlon/addons/pvzadventure/WaveData.cs
2025-07-16 21:55:47 +05:00

12 lines
302 B
C#

using Godot;
using Godot.Collections;
[GlobalClass]
[Tool]
public partial class WaveData : Resource
{
[Export] public Array<RowSpawn> zombiesOrdered = new();
[Export] public Array<WaveEvent> events = new();
[Export] public float customWaveDelay = 0;
[Export] public bool isHugeWave;
}