Exemplo n.º 1
0
// Instantiate for each type of Locator.
std::list<item> inventory::reduce_stack(int position, int quantity)
{
    return reduce_stack_internal(position, quantity);
}
Exemplo n.º 2
0
std::list<item> inventory::reduce_stack(const itype_id &type, int quantity)
{
    return reduce_stack_internal(type, quantity);
}
Exemplo n.º 3
0
std::list<item> inventory::reduce_stack(char ch, int quantity)
{
    return reduce_stack_internal(ch, quantity);
}