I18NCommander/I18N Commander/App/scenes/BtnIcon.cs
2023-12-08 20:09:50 +01:00

10 lines
171 B
C#

using Godot;
namespace App.scenes;
public partial class BtnIcon : Control
{
[Export]
[ExportGroup("Data")]
public string Text { get; set; } = string.Empty;
}