Plane.Sdk3/PlaneGcsSdk.Contract_Shared/CopterControllers/ICopterControllerManager.cs

12 lines
306 B
C#
Raw Normal View History

2017-02-27 02:02:19 +08:00
namespace Plane.CopterControllers
{
public interface ICopterControllerManager
{
bool IsControllingRollPitchUsingAvatar { get; }
void EnableCopterControllers(CopterControllerTypes controllerTypes);
bool IsControllerEnabled(CopterControllerTypes controllerType);
}
}