// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.Experimental.Joystick { /// /// Describes the current state of a joystick control. /// public enum JoystickMode { Move = 0, Scale, Rotate } }