| 12345678910111213141516171819 |
- //-----------------------------------------------------------------------------
- // MouseButtons.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- namespace RolePlaying
- {
- public static partial class InputManager
- {
- public enum MouseButtons
- {
- LeftButton,
- RightButton,
- MiddleButton
- }
- }
- }
|