AlpacaLibrary/Include/Core/Classes/CombatInfo.hpp

26 lines
536 B
C++
Raw Normal View History

2018-04-14 01:05:35 +00:00
#ifndef COMBATINFO_HPP_INCLUDED
#define COMBATINFO_HPP_INCLUDED
#include "Node.hpp"
#include "../JavaClass/Class.hpp"
#include "LinkedList.hpp"
#include "HealthInfo.hpp"
namespace Internal
{
class CombatInfo : public Node
{
public:
CombatInfo();
CombatInfo(const void* Obj);
CombatInfo(const CombatInfo& C);
static Class GetClass();
LinkedList GetHealthBar() const;
HealthInfo GetHealthInfo() const;
};
}
#endif // COMBATINFO_HPP_INCLUDED