12 lines
306 B
C#
12 lines
306 B
C#
namespace Plane.CopterControllers
|
|
{
|
|
public interface ICopterControllerManager
|
|
{
|
|
bool IsControllingRollPitchUsingAvatar { get; }
|
|
|
|
void EnableCopterControllers(CopterControllerTypes controllerTypes);
|
|
|
|
bool IsControllerEnabled(CopterControllerTypes controllerType);
|
|
}
|
|
}
|