AlpacaLibrary/Include/Core/Classes/GroundItem.hpp

22 lines
445 B
C++

#ifndef GROUNDITEM_HPP_INCLUDED
#define GROUNDITEM_HPP_INCLUDED
#include "Renderable.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
class GroundItem : public Renderable
{
public:
GroundItem();
GroundItem(const void* Obj);
GroundItem(const GroundItem& G);
static Class GetClass();
std::int32_t GetAmount() const;
std::int32_t GetID() const;
};
#endif // GROUNDITEM_HPP_INCLUDED