// Instantiate for each type of Locator.
item inventory::remove_item(int position)
{
    return remove_item_internal(position);
}
item inventory::remove_item(const itype_id &type)
{
    return remove_item_internal(type);
}
Beispiel #3
0
item inventory::remove_item(char ch) {
    return remove_item_internal(ch);
}