10 lines
229 B
C#
10 lines
229 B
C#
using System.ComponentModel;
|
|
|
|
namespace Plane.Copters
|
|
{
|
|
public partial interface ICopter : ICopterStatus, ICopterEvents, ICopterActions, ICopterCommunication, INotifyPropertyChanged, ICopterAttribute
|
|
{
|
|
|
|
}
|
|
}
|