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; } }