备份CatanBuilding瘦身独立工程

This commit is contained in:
JSD\13999
2026-05-26 16:15:54 +08:00
commit 2d0e6a61b7
12001 changed files with 2431925 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections.Generic;
namespace HexGrid
{
[System.Serializable]
public class HexSubZone
{
//
public int zoneId; // 属于哪个zone
public int subZoneId;
//public List<HexTile> tiles= new ();
// 当前包括的地块Id
public List<string> tileNames = new();
//todo:LF 使用ID 比较好,效率更好一点
// public List<int> tileIds = new();
//TODO:LF 建筑列表
// public List<HexBuilding> buildings = new();
}
}