16 lines
304 B
C#
16 lines
304 B
C#
|
using Plane.Geography;
|
|||
|
|
|||
|
namespace Plane.Copters
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 定义物体可见的状态。
|
|||
|
/// </summary>
|
|||
|
public interface IVisibleStatus : ILocation, IAttitude
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 获取名称。
|
|||
|
/// </summary>
|
|||
|
string Name { get; }
|
|||
|
}
|
|||
|
}
|