newlon/scripts/LevelGUIElements.cs
2025-07-19 19:29:45 +05:00

18 lines
316 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 _Ready()
{
Instance = this;
}
}