| 663 | vector<bounceent *> bounceents; |
| 664 | |
| 665 | void removebounceents(playerent *owner) |
| 666 | { |
| 667 | loopv(bounceents) if(bounceents[i]->owner==owner) { delete bounceents[i]; bounceents.remove(i--); } |
| 668 | } |
| 669 | |
| 670 | void movebounceents() |
| 671 | { |
no test coverage detected