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