#ifndef HEALTHBAR_HPP_INCLUDED #define HEALTHBAR_HPP_INCLUDED #include "Node.hpp" #include "../JavaClass/Class.hpp" #include namespace Internal { class HealthBar : public Node { public: HealthBar(const void* Obj); HealthBar() = default; HealthBar(HealthBar&& Obj) = default; HealthBar(const HealthBar& Obj) = default; HealthBar& operator=(HealthBar&& Obj) = default; HealthBar& operator=(const HealthBar& Obj) = default; static Class GetClass(); std::int32_t GetHealthRatio() const; std::int32_t GetTick() const; }; } #endif // HEALTHBAR_HPP_INCLUDED