AlpacaLibrary/Include/Core/Classes/GroundItem.hpp

25 lines
508 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef GROUNDITEM_HPP_INCLUDED
#define GROUNDITEM_HPP_INCLUDED
#include "Renderable.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class GroundItem : public Renderable
{
public:
GroundItem();
GroundItem(const void* Obj);
GroundItem(const GroundItem& G);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetAmount() const;
std::int32_t GetID() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // GROUNDITEM_HPP_INCLUDED