#include "shared/item/item.hh" namespace shared { namespace item { std::uint32_t item::get_max_stack(const item::type_t& type) noexcept { switch (type) { default: return 64; } } } // namespace item } // namespace shared