AlpacaLibary  1.63
A closed source C++ bot for OSRS
CombatInfo.hpp
Go to the documentation of this file.
1 #ifndef COMBATINFO_HPP_INCLUDED
2 #define COMBATINFO_HPP_INCLUDED
3 
4 #include "Node.hpp"
5 #include "../JavaClass/Class.hpp"
6 #include "LinkedList.hpp"
7 #include "HealthInfo.hpp"
8 
9 namespace Internal
10 {
11  class CombatInfo : public Node
12  {
13  public:
14  CombatInfo(const void* Obj);
15 
16  CombatInfo() = default;
17  CombatInfo(CombatInfo&& Obj) = default;
18  CombatInfo(const CombatInfo& Obj) = default;
20  CombatInfo& operator=(const CombatInfo& Obj) = default;
21 
22  static Class GetClass();
23 
26 
27  };
28 }
29 
30 #endif // COMBATINFO_HPP_INCLUDED
LinkedList GetHealthBar() const
CombatInfo(const CombatInfo &Obj)=default
CombatInfo(CombatInfo &&Obj)=default
CombatInfo & operator=(const CombatInfo &Obj)=default
HealthInfo GetHealthInfo() const
CombatInfo & operator=(CombatInfo &&Obj)=default
CombatInfo(const void *Obj)
static Class GetClass()