Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / ui / tileSetEditorTerrain / up / TerrainTabData.cs
@小李xl 小李xl on 5 Jan 2024 281 bytes 继续开发TileSet地形编辑器
using System;

namespace UI.TileSetEditorTerrain;

public class TerrainTabData
{
    public string Text;
    public TileSetEditorTerrain.TopBg TopBg;

    public TerrainTabData(string text, TileSetEditorTerrain.TopBg topBg)
    {
        Text = text;
        TopBg = topBg;
    }
}