Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / ui / tileSetEditorTerrain / up / TerrainTabData.cs
@小李xl 小李xl on 5 Jan 2024 281 bytes 继续开发TileSet地形编辑器
  1. using System;
  2.  
  3. namespace UI.TileSetEditorTerrain;
  4.  
  5. public class TerrainTabData
  6. {
  7. public string Text;
  8. public TileSetEditorTerrain.TopBg TopBg;
  9.  
  10. public TerrainTabData(string text, TileSetEditorTerrain.TopBg topBg)
  11. {
  12. Text = text;
  13. TopBg = topBg;
  14. }
  15. }