AlpacaLibary  1.63
A closed source C++ bot for OSRS
World.hpp
Go to the documentation of this file.
1 #ifndef WORLD_HPP_INCLUDED
2 #define WORLD_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include <string>
7 #include <cstdint>
8 
9 namespace Internal
10 {
11  class World : public Object
12  {
13  public:
14  World(const void* Obj);
15 
16  World() = default;
17  World(World&& Obj) = default;
18  World(const World& Obj) = default;
19  World& operator=(World&& Obj) = default;
20  World& operator=(const World& Obj) = default;
21 
22  static Class GetClass();
23 
24  std::string GetActivity() const;
25  std::string GetAddress() const;
26  std::int32_t GetID() const;
27  std::int32_t GetIndex() const;
28  std::int32_t GetLocation() const;
29  std::int32_t GetMask() const;
30  std::int32_t GetPlayerCount() const;
31 
32  };
33 }
34 
35 #endif // WORLD_HPP_INCLUDED
World(const void *Obj)
std::int32_t GetPlayerCount() const
std::string GetAddress() const
World & operator=(World &&Obj)=default
std::int32_t GetLocation() const
World()=default
static Class GetClass()
std::int32_t GetMask() const
std::string GetActivity() const
std::int32_t GetIndex() const
World(World &&Obj)=default
World(const World &Obj)=default
World & operator=(const World &Obj)=default
std::int32_t GetID() const