namespace ColdMint.scripts.map.interfaces; /// /// Represents a branch on the map. /// 表示地图上的一个分支。 /// public interface IBranch { /// /// Master branch or not /// 是否为主分支 /// bool IsMasterBranch { get; set; } }