AlpacaLibary  1.63
A closed source C++ bot for OSRS
GameShell.hpp
Go to the documentation of this file.
1 #ifndef GAMESHELL_HPP_INCLUDED
2 #define GAMESHELL_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include "../JavaClass/Canvas.hpp"
7 
8 namespace Internal
9 {
10  class GameShell : public Object
11  {
12  public:
13  GameShell(const void* Obj);
14 
15  GameShell() = default;
16  GameShell(GameShell&& Obj) = default;
17  GameShell(const GameShell& Obj) = default;
19  GameShell& operator=(const GameShell& Obj) = default;
20 
21  static Class GetClass();
22 
23  Canvas GetCanvas() const;
24 
25  };
26 }
27 
28 #endif // GAMESHELL_HPP_INCLUDED
GameShell & operator=(GameShell &&Obj)=default
GameShell & operator=(const GameShell &Obj)=default
static Class GetClass()
GameShell(const void *Obj)
GameShell(const GameShell &Obj)=default
GameShell(GameShell &&Obj)=default
Canvas GetCanvas() const