SupaLidlGame/UI/UIController.cs

13 lines
218 B
C#
Raw Permalink Normal View History

2023-07-23 11:05:01 -07:00
using Godot;
namespace SupaLidlGame.UI;
public partial class UIController : Control
{
[Export]
public TextureProgressBar PlayerHealthBar { get; set; }
[Export]
public BossBar BossBar { get; set; }
}