AlpacaLibary  1.63
A closed source C++ bot for OSRS
WallObject.hpp
Go to the documentation of this file.
1 #ifndef WALLOBJECT_HPP_INCLUDED
2 #define WALLOBJECT_HPP_INCLUDED
3 
4 #include "../JavaClass/Object.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include <cstdint>
7 #include "Renderable.hpp"
8 
9 namespace Internal
10 {
11  class WallObject : public Object
12  {
13  public:
14  WallObject(const void* Obj);
15 
16  WallObject() = default;
17  WallObject(WallObject&& Obj) = default;
18  WallObject(const WallObject& Obj) = default;
20  WallObject& operator=(const WallObject& Obj) = default;
21 
22  static Class GetClass();
23 
24  std::int32_t GetFlags() const;
25  std::int64_t GetHash() const;
26  std::int32_t GetHeight() const;
27  std::int32_t GetOrientation() const;
28  std::int32_t GetOrientation2() const;
31  std::int32_t GetX() const;
32  std::int32_t GetY() const;
33  std::int32_t GetZ() const;
34 
35  };
36 }
37 
38 #endif // WALLOBJECT_HPP_INCLUDED
std::int32_t GetZ() const
std::int32_t GetX() const
WallObject & operator=(WallObject &&Obj)=default
WallObject(WallObject &&Obj)=default
std::int32_t GetY() const
WallObject(const WallObject &Obj)=default
static Class GetClass()
std::int32_t GetOrientation2() const
WallObject & operator=(const WallObject &Obj)=default
std::int32_t GetOrientation() const
WallObject(const void *Obj)
Renderable GetRenderable2() const
Renderable GetRenderable() const
std::int32_t GetFlags() const
std::int64_t GetHash() const
std::int32_t GetHeight() const