Returns the number of items in this stack @return An integer containing the number of items in this stack
| 51 | // |
| 52 | // @return An integer containing the number of items in this stack |
| 53 | size_t LuaBindings::ItemCallbacks::count(Item* item) { |
| 54 | return item->count(); |
| 55 | } |
| 56 | |
| 57 | // Sets the number of items in the stack (up to maxStack) |
| 58 | // |
no outgoing calls
no test coverage detected