newlon/scripts/LevelGUIElements.cs
2025-07-11 22:35:36 +05:00

18 lines
302 B
C#

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