newlon/addons/pvzadventure/scripts/UNI_GridItem.cs
2025-07-17 18:11:00 +05:00

15 lines
317 B
C#

using Godot;
using System;
public partial class UNI_GridItem : PanelContainer
{
// Called when the node enters the scene tree for the first time.
public override void _Ready()
{
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
public override void _Process(double delta)
{
}
}