AlpacaLibrary/Include/Core/Classes/ItemContainer.hpp

31 lines
799 B
C++
Raw Permalink 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>
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 ItemContainer : public Node
{
public:
ItemContainer(const void* Obj);
2018-12-27 18:17:09 +00:00
ItemContainer() = default;
ItemContainer(ItemContainer&& Obj) = default;
ItemContainer(const ItemContainer& Obj) = default;
ItemContainer& operator=(ItemContainer&& Obj) = default;
ItemContainer& operator=(const ItemContainer& 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::vector<std::int32_t> GetItemAmounts() const;
std::vector<std::int32_t> GetItemIDs() 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 // ITEMCONTAINER_HPP_INCLUDED