AlpacaLibary  1.63
A closed source C++ bot for OSRS
MouseWheelEvent.hpp
Go to the documentation of this file.
1 #ifndef MOUSEWHEELEVENT_HPP_INCLUDED
2 #define MOUSEWHEELEVENT_HPP_INCLUDED
3 
4 #include <cstdint>
5 #include "Object.hpp"
6 
7 namespace Internal
8 {
9  class MouseWheelEvent : public Object
10  {
11  public:
12  MouseWheelEvent(const void* Object);
13  MouseWheelEvent(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 ScrollType, std::int32_t ScrollAmount, std::int32_t WheelRotation);
16 
17  MouseWheelEvent() = default;
19  MouseWheelEvent(const MouseWheelEvent& Obj) = default;
22  };
23 }
24 
25 #endif // MOUSEWHEELEVENT_HPP_INCLUDED
MouseWheelEvent & operator=(MouseWheelEvent &&Obj)=default
MouseWheelEvent(const MouseWheelEvent &Obj)=default
MouseWheelEvent(MouseWheelEvent &&Obj)=default
MouseWheelEvent(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 ScrollType, std::int32_t ScrollAmount, std::int32_t WheelRotation)
MouseWheelEvent(const void *Object)
MouseWheelEvent & operator=(const MouseWheelEvent &Obj)=default