AlpacaLibrary/Include/Core/Classes/GroundItem.hpp

30 lines
715 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(const void* Obj);
2018-12-27 18:17:09 +00:00
GroundItem() = default;
GroundItem(GroundItem&& Obj) = default;
GroundItem(const GroundItem& Obj) = default;
GroundItem& operator=(GroundItem&& Obj) = default;
GroundItem& operator=(const GroundItem& Obj) = default;
2018-03-18 14:38:29 +00:00
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