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