aboutsummaryrefslogtreecommitdiff
path: root/include/mglpp/window/Mouse.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mglpp/window/Mouse.hpp')
-rw-r--r--include/mglpp/window/Mouse.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/mglpp/window/Mouse.hpp b/include/mglpp/window/Mouse.hpp
new file mode 100644
index 0000000..d77659a
--- /dev/null
+++ b/include/mglpp/window/Mouse.hpp
@@ -0,0 +1,22 @@
+#ifndef MGLPP_MOUSE_HPP
+#define MGLPP_MOUSE_HPP
+
+namespace mgl {
+ class Mouse {
+ public:
+ enum Button {
+ Left,
+ Right,
+ Middle,
+ XButton1,
+ XButton2
+ };
+
+ enum Wheel {
+ VerticalWheel,
+ HorizontalWheel
+ };
+ };
+}
+
+#endif /* MGLPP_MOUSE_HPP */