Traveller/scripts/map/interfaces/IBranch.cs
Cold-Mint 92659d23b0
Prepare to add forks to the map.
准备为地图添加分叉。
2024-05-10 22:56:27 +08:00

18 lines
385 B
C#

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