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