15 lines
254 B
C#
15 lines
254 B
C#
using Godot;
|
|
|
|
|
|
[Tool]
|
|
public partial class ZombieEditor : VBoxContainer
|
|
{
|
|
public WaveData editedWave;
|
|
[Export] private ZE_GridContainer container;
|
|
|
|
public void SetEditedWave(WaveData data)
|
|
{
|
|
editedWave = data;
|
|
container.SetData(editedWave);
|
|
}
|
|
}
|