@paperbits/common
Version:
Paperbits common components.
17 lines (14 loc) • 355 B
text/typescript
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
}