10 lines
171 B
C#
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;
|
||
|
}
|