14 lines
249 B
C#
14 lines
249 B
C#
using Godot;
|
|
|
|
namespace App.scenes;
|
|
|
|
public partial class BtnIcon : Control
|
|
{
|
|
[Export]
|
|
[ExportGroup("Data")]
|
|
public string Text { get; set; } = string.Empty;
|
|
|
|
[Export]
|
|
[ExportGroup("Data")]
|
|
public Texture Icon { get; set; }
|
|
} |