I18NCommander/I18N Commander/App/scenes/BtnIcon.cs

14 lines
249 B
C#
Raw Normal View History

2023-12-08 19:09:50 +00:00
using Godot;
namespace App.scenes;
public partial class BtnIcon : Control
{
[Export]
[ExportGroup("Data")]
public string Text { get; set; } = string.Empty;
2023-12-08 19:16:39 +00:00
[Export]
[ExportGroup("Data")]
public Texture Icon { get; set; }
2023-12-08 19:09:50 +00:00
}