diff options
author | epoch <epoch@hacking.allowed.org> | 2020-07-17 03:59:35 -0500 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2020-07-17 03:59:35 -0500 |
commit | 76c2983c0d1ce48321310ebb60b1c81f4dcbbf44 (patch) | |
tree | a441be3fc3d42d627889ff8dc653b78b04dd2277 /src | |
parent | a62c1dde4cc417bec166ee032bb39d1be63d7e7d (diff) | |
download | hackvr-76c2983c0d1ce48321310ebb60b1c81f4dcbbf44.tar.gz hackvr-76c2983c0d1ce48321310ebb60b1c81f4dcbbf44.zip |
added a header for what the different mouse buttons are for hackvr
Diffstat (limited to 'src')
-rw-r--r-- | src/mouse.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mouse.h b/src/mouse.h new file mode 100644 index 0000000..842a190 --- /dev/null +++ b/src/mouse.h @@ -0,0 +1,11 @@ +#ifndef _HACKVR_MOUSE_H_ +#define _HACKVR_MOUSE_H_ + +#define MOUSE_PRIMARY 0 +#define MOUSE_TERTIARY 1 +#define MOUSE_SECONDARY 2 + +#define MOUSE_SCROLLUP 3 +#define MOUSE_SCROLLDOWN 4 + +#endif |