AlpacaLibary  1.63
A closed source C++ bot for OSRS
MouseEvent.hpp
Go to the documentation of this file.
1 #ifndef MOUSEEVENT_HPP_INCLUDED
2 #define MOUSEEVENT_HPP_INCLUDED
3 
4 #include <cstdint>
5 #include "Object.hpp"
6 
7 namespace Internal
8 {
9  class MouseEvent : public Object
10  {
11  public:
12  MouseEvent(const void* Object);
13  MouseEvent(Object Source, std::int32_t ID, std::int64_t When, std::int32_t Modifiers,
14  std::int32_t X, std::int32_t Y, std::int32_t ClickCount, bool PopupTrigger,
15  std::int32_t Button);
16 
17  MouseEvent() = default;
18  MouseEvent(MouseEvent&& Obj) = default;
19  MouseEvent(const MouseEvent& Obj) = default;
21  MouseEvent& operator=(const MouseEvent& Obj) = default;
22  };
23 }
24 
25 #endif // MOUSEEVENT_HPP_INCLUDED
Button
Definition: Input.hpp:16
MouseEvent(MouseEvent &&Obj)=default
MouseEvent(const void *Object)
MouseEvent & operator=(MouseEvent &&Obj)=default
MouseEvent(const MouseEvent &Obj)=default
MouseEvent & operator=(const MouseEvent &Obj)=default
MouseEvent(Object Source, std::int32_t ID, std::int64_t When, std::int32_t Modifiers, std::int32_t X, std::int32_t Y, std::int32_t ClickCount, bool PopupTrigger, std::int32_t Button)