AlpacaLibary  1.63
A closed source C++ bot for OSRS
GroundObject.hpp
Go to the documentation of this file.
1 #ifndef GROUNDOBJECT_HPP_INCLUDED
2 #define GROUNDOBJECT_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 GroundObject : public Object
12  {
13  public:
14  GroundObject(const void* Obj);
15 
16  GroundObject() = default;
18  GroundObject(const GroundObject& Obj) = default;
20  GroundObject& operator=(const GroundObject& Obj) = default;
21 
22  static Class GetClass();
23 
24  std::int64_t GetHash() const;
25  std::int32_t GetRenderInfo() const;
27  std::int32_t GetX() const;
28  std::int32_t GetY() const;
29  std::int32_t GetZ() const;
30 
31  };
32 }
33 
34 #endif // GROUNDOBJECT_HPP_INCLUDED
std::int32_t GetRenderInfo() const
std::int32_t GetZ() const
GroundObject & operator=(GroundObject &&Obj)=default
static Class GetClass()
std::int32_t GetX() const
GroundObject & operator=(const GroundObject &Obj)=default
GroundObject(const GroundObject &Obj)=default
std::int64_t GetHash() const
GroundObject(const void *Obj)
std::int32_t GetY() const
GroundObject(GroundObject &&Obj)=default
Renderable GetRenderable() const