15 lines
319 B
C#
15 lines
319 B
C#
|
using Plane.Copters;
|
|||
|
|
|||
|
namespace Plane.Messaging
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 在飞行器姿态变化时发出的消息。
|
|||
|
/// </summary>
|
|||
|
public class CopterAttitudeChangedMessage : CopterMessageBase
|
|||
|
{
|
|||
|
public CopterAttitudeChangedMessage(ICopter copter) : base(copter)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|