package com.limelight.nvstream.input; public class MouseButtonPacket { public static final byte PRESS_EVENT = 0x07; public static final byte RELEASE_EVENT = 0x08; public static final byte BUTTON_LEFT = 0x01; public static final byte BUTTON_MIDDLE = 0x02; public static final byte BUTTON_RIGHT = 0x03; public static final byte BUTTON_X1 = 0x04; public static final byte BUTTON_X2 = 0x05; }