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