aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2020-07-17 03:59:35 -0500
committerepoch <epoch@hacking.allowed.org>2020-07-17 03:59:35 -0500
commit76c2983c0d1ce48321310ebb60b1c81f4dcbbf44 (patch)
treea441be3fc3d42d627889ff8dc653b78b04dd2277
parenta62c1dde4cc417bec166ee032bb39d1be63d7e7d (diff)
downloadhackvr-76c2983c0d1ce48321310ebb60b1c81f4dcbbf44.tar.gz
hackvr-76c2983c0d1ce48321310ebb60b1c81f4dcbbf44.zip
added a header for what the different mouse buttons are for hackvr
-rw-r--r--src/mouse.h11
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