AlpacaLibrary/Include/Core/JavaClass/Integer.hpp

18 lines
341 B
C++

#ifndef INTEGER_HPP_INCLUDED
#define INTEGER_HPP_INCLUDED
#include <cstdint>
#include "Object.hpp"
class Integer : public Object
{
public:
Integer();
Integer(void* Obj);
Integer(const Integer& I);
Integer(std::int32_t Value);
std::int32_t GetIntValue() const;
};
#endif // INTEGER_HPP_INCLUDED