newlon/scripts/gui/LevelGUIElements.cs
2025-07-28 18:03:26 +05:00

18 lines
320 B
C#

using Godot;
using Newlon.Components.GUI;
namespace Newlon.Components;
public partial class LevelGUIElements : Control
{
public static LevelGUIElements Instance;
[Export]
public HBoxContainer SeedpacketsHotbar;
[Export]
public SunCounter SunCounter;
public override void _EnterTree()
{
Instance = this;
}
}