AlpacaLibrary/Include/Core/Classes/HealthInfo.hpp

29 lines
680 B
C++
Raw Normal View History

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