1 2 3 4 5 6 7 8 9 10 11 12 13 14
#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