| 10 | uint32_t restarts_; |
| 11 | |
| 12 | FooBot() : |
| 13 | restarts_(0) { |
| 14 | } |
| 15 | |
| 16 | virtual void OnGameStart() final { |
| 17 | std::cout << "Starting a new game (" << restarts_ << " restarts)" << std::endl; |
nothing calls this directly
no outgoing calls
no test coverage detected