* Blits the inventory elements. * @param surface Pointer to surface to blit onto. */
| 426 | * @param surface Pointer to surface to blit onto. |
| 427 | */ |
| 428 | void Inventory::blit(Surface *surface) |
| 429 | { |
| 430 | clear(); |
| 431 | _grid->blit(this); |
| 432 | _items->blit(this); |
| 433 | _selection->blit(this); |
| 434 | _warning->blit(this); |
| 435 | Surface::blit(surface); |
| 436 | } |
| 437 | |
| 438 | /** |
| 439 | * Moves the selected item. |
no outgoing calls
no test coverage detected