FunGame-Godot/scripts/UserInterface.cs
2025-04-14 21:54:29 +08:00

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()
{
}
}