newlon/scripts/components/LevelGUIElements.cs

16 lines
272 B
C#

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