AlpacaLibary  1.63
A closed source C++ bot for OSRS
FocusEvent.hpp
Go to the documentation of this file.
1 #ifndef FOCUSEVENT_HPP_INCLUDED
2 #define FOCUSEVENT_HPP_INCLUDED
3 
4 #include <cstdint>
5 #include "Object.hpp"
6 
7 namespace Internal
8 {
9  class FocusEvent : public Object
10  {
11  public:
12  FocusEvent(const void* Object);
13  FocusEvent(Object Source, std::int32_t ID);
14 
15  FocusEvent() = default;
16  FocusEvent(FocusEvent&& Obj) = default;
17  FocusEvent(const FocusEvent& Obj) = default;
19  FocusEvent& operator=(const FocusEvent& Obj) = default;
20  };
21 }
22 
23 #endif // FOCUSEVENT_HPP_INCLUDED
FocusEvent & operator=(const FocusEvent &Obj)=default
FocusEvent(const void *Object)
FocusEvent(FocusEvent &&Obj)=default
FocusEvent(const FocusEvent &Obj)=default
FocusEvent(Object Source, std::int32_t ID)
FocusEvent & operator=(FocusEvent &&Obj)=default