19 lines
526 B
C#
19 lines
526 B
C#
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();
|
|
}
|
|
} |