001package com.fs.starfarer.api.input;
002
003/**
004 * The values returned by the LWJGL input library for the mouse buttons.
005 * 
006 * The value of InputEvent will be set to one of these (0, 1, 2) or a larger number if
007 * its a different mouse button.  These are simply provided for convenience, and
008 * are not strictly necessary.
009 * 
010 * @author Alex Mosolov
011 *
012 */
013public interface InputEventMouseButton {
014        
015        public static final int LEFT = 0;
016        public static final int RIGHT = 1;
017        public static final int MIDDLE = 2;
018}