Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / ui / tileSetEditor / TileSetEditorTabData.cs
@小李xl 小李xl on 12 Dec 2023 278 bytes 制作页签中
  1. namespace UI.TileSetEditor;
  2.  
  3. /// <summary>
  4. /// 页签数据
  5. /// </summary>
  6. public class TileSetEditorTabData
  7. {
  8. /// <summary>
  9. /// 显示文本
  10. /// </summary>
  11. public string Text;
  12.  
  13. /// <summary>
  14. /// 打开的Ui
  15. /// </summary>
  16. public string UiName;
  17. }