MouseButtons.cs 490 B

12345678910111213141516171819
  1. //-----------------------------------------------------------------------------
  2. // MouseButtons.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. namespace RolePlaying
  8. {
  9. public static partial class InputManager
  10. {
  11. public enum MouseButtons
  12. {
  13. LeftButton,
  14. RightButton,
  15. MiddleButton
  16. }
  17. }
  18. }