#include "client/item/items.hh" namespace client { namespace item { shared::item::item_t make_item(const shared::item::item::type_t& type, const std::uint32_t& quantity) noexcept { if (type >= shared::item::block::type_offset) { return std::make_shared(type, quantity); } // TODO non-block items return std::make_shared(type, quantity); } } // namespace item } // namespace client