aboutsummaryrefslogtreecommitdiff
path: root/src/shared/item/item.cc
blob: f711523b685bb73c93f4b744025e3a596ca39967 (plain)
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