备份CatanBuilding瘦身独立工程
This commit is contained in:
19
Assets/Scripts/HexGrid/Data/HexSubZone.cs
Normal file
19
Assets/Scripts/HexGrid/Data/HexSubZone.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user