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