AlpacaLibary  1.63
A closed source C++ bot for OSRS
DecorativeObject.hpp
Go to the documentation of this file.
1 #ifndef DECORATIVEOBJECT_HPP_INCLUDED
2 #define DECORATIVEOBJECT_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 DecorativeObject : public Object
12  {
13  public:
14  DecorativeObject(const void* Obj);
15 
16  DecorativeObject() = default;
21 
22  static Class GetClass();
23 
24  std::int32_t GetAngle() const;
25  std::int32_t GetFlags() const;
26  std::int64_t GetHash() const;
27  std::int32_t GetOffsetX() const;
28  std::int32_t GetOffsetY() const;
29  std::int32_t GetRenderInfo() 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 // DECORATIVEOBJECT_HPP_INCLUDED
std::int32_t GetAngle() const
DecorativeObject & operator=(DecorativeObject &&Obj)=default
std::int32_t GetRenderInfo() const
std::int32_t GetFlags() const
Renderable GetRenderable() const
std::int32_t GetOffsetX() const
DecorativeObject(const void *Obj)
std::int32_t GetZ() const
std::int64_t GetHash() const
std::int32_t GetOffsetY() const
DecorativeObject(DecorativeObject &&Obj)=default
std::int32_t GetY() const
DecorativeObject(const DecorativeObject &Obj)=default
DecorativeObject & operator=(const DecorativeObject &Obj)=default
std::int32_t GetX() const