AlpacaLibrary/Include/Core/Classes/Varbit.hpp

31 lines
710 B
C++

#ifndef VARBIT_HPP_INCLUDED
#define VARBIT_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
namespace Internal
{
class Varbit : public CacheableNode
{
public:
Varbit(const void* Obj);
Varbit() = default;
Varbit(Varbit&& Obj) = default;
Varbit(const Varbit& Obj) = default;
Varbit& operator=(Varbit&& Obj) = default;
Varbit& operator=(const Varbit& Obj) = default;
static Class GetClass();
std::int32_t GetLSB() const;
std::int32_t GetMSB() const;
std::int32_t GetSettingID() const;
};
}
#endif // VARBIT_HPP_INCLUDED