AlpacaLibrary/Include/Core/Classes/ItemContainer.hpp

23 lines
511 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef ITEMCONTAINER_HPP_INCLUDED
#define ITEMCONTAINER_HPP_INCLUDED
#include "Node.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <cstdint>
class ItemContainer : public Node
{
public:
ItemContainer();
ItemContainer(const void* Obj);
ItemContainer(const ItemContainer& I);
static Class GetClass();
std::vector<std::int32_t> GetItemAmounts() const;
std::vector<std::int32_t> GetItemIDs() const;
};
#endif // ITEMCONTAINER_HPP_INCLUDED