//----------------------------------------------------------------------------- // 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 } } }