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