export enum MouseButtons {
    /**
     * Main button, usually the left button or the un-initialized state.
     */
    Main = 0,

    /**
     * Auxiliary button, usually the wheel button or the middle button (if present).
     */
    Auxiliary = 1,

    /**
     * Secondary button, usually the right button.
     */
    Secondary = 2
}
