aboutsummaryrefslogtreecommitdiff
path: root/include/mglpp/window/Mouse.hpp
blob: c53f07629b80bc6fdd5aa3eab4a07b4639713138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MGLPP_MOUSE_HPP
#define MGLPP_MOUSE_HPP

namespace mgl {
    class Mouse {
    public:
        /* Has to match mgl_mouse_button */
        enum Button : int {
            Unknown,
            Left,
            Right,
            Middle,
            XButton1,
            XButton2
        };
    };
}

#endif /* MGLPP_MOUSE_HPP */