d忘了加

This commit is contained in:
xu 2020-02-26 01:46:07 +08:00
parent c1b3a32407
commit 3518f4d570

View File

@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Plane.Copters
{
/// <summary>
/// 定义用于获取飞行器虚拟ID(主要用于无序摆放飞机自动按位置计算当前飞机ID)
/// </summary>
public interface ICopterVirtualId
{
/// <summary>
/// 获取自动排序生成的虚拟ID
/// </summary>
int VirtualId { get; set; }
/// <summary>
/// 是否展示虚拟ID: true:显示虚拟IDfalse显示Name
/// </summary>
bool DisplayVirtualId { get; set; }
/// <summary>
/// 是否展示ID: true:显示IDfalse显示Name
/// </summary>
bool DisplayID { get; set; }
}
}