Asteroids.Classes.ControlHandler.GetKeyBindings C# (CSharp) Метод

GetKeyBindings() публичный Метод

public GetKeyBindings ( ) : ].string[
Результат ].string[
        public string[,] GetKeyBindings()
        {
            return keyBindings;
        }

Usage Example

        private void LoadControls()
        {
            controlHandler = new ControlHandler();
            keyBindings = controlHandler.GetKeyBindings();
            originalKeybindings = controlHandler.GetKeyBindings();

            controlsEnabled = true;
            int posX = 0;
            int posY = 0;
            pointerPos = new Vector2(xPositions[posX], yPositions[posY]);

            if (controlHandler.GetNumberOfWiimotes() > 0)
                wm = controlHandler.GetWiimote(0);
        }
All Usage Examples Of Asteroids.Classes.ControlHandler::GetKeyBindings