AlpacaLibrary/Include/Core/Classes/HealthBar.hpp

30 lines
696 B
C++
Raw Permalink Normal View History

2018-04-14 01:05:35 +00:00
#ifndef HEALTHBAR_HPP_INCLUDED
#define HEALTHBAR_HPP_INCLUDED
#include "Node.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
namespace Internal
{
class HealthBar : public Node
{
public:
HealthBar(const void* Obj);
2018-12-27 18:17:09 +00:00
HealthBar() = default;
HealthBar(HealthBar&& Obj) = default;
HealthBar(const HealthBar& Obj) = default;
HealthBar& operator=(HealthBar&& Obj) = default;
HealthBar& operator=(const HealthBar& Obj) = default;
2018-04-14 01:05:35 +00:00
static Class GetClass();
std::int32_t GetHealthRatio() const;
std::int32_t GetTick() const;
};
}
#endif // HEALTHBAR_HPP_INCLUDED