newlon/addons/pvzadventure/AdventureLevelResource.cs
2025-07-16 16:12:50 +05:00

13 lines
368 B
C#

using Godot;
using Godot.Collections;
[GlobalClass]
[Tool]
public partial class AdventureLevelResource : Resource
{
[Export] public float startSun;
//[Export] public Array<Conditions> conditions;
[Export(PropertyHint.Range,"0,1,0.01")] public float wavePercentage;
[Export] public float standardWaveDelay;
[Export] public Array<WaveData> waves;
}