| 1234567891011121314151617181920212223242526272829303132333435 |
- //-----------------------------------------------------------------------------
- // GamePadButtons.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- namespace RolePlaying
- {
- public static partial class InputManager
- {
- /// <summary>
- /// GamePad controls expressed as one type, unified with button semantics.
- /// </summary>
- public enum GamePadButtons
- {
- Start,
- Back,
- A,
- B,
- X,
- Y,
- Up,
- Down,
- Left,
- Right,
- LeftShoulder,
- RightShoulder,
- LeftTrigger,
- RightTrigger,
- }
- }
- }
|