21 lines
329 B
C#
21 lines
329 B
C#
using Godot;
|
|
|
|
namespace Milimoe.GodotGame;
|
|
|
|
public partial class UserInterface : Control
|
|
{
|
|
[Export]
|
|
public Panel CharacterStatus1 { get; set; }
|
|
|
|
[Export]
|
|
public Panel CharacterStatus2 { get; set; }
|
|
|
|
[Export]
|
|
public Panel CharacterStatus3 { get; set; }
|
|
|
|
public override void _Ready()
|
|
{
|
|
|
|
}
|
|
}
|