| 4 | #include <cstdio> |
| 5 | |
| 6 | struct Air { |
| 7 | Air(int amount) |
| 8 | : _amount{amount} |
| 9 | {} |
| 10 | |
| 11 | void Consume(int v) { _amount -= v; } |
| 12 | int Available() const { return _amount; } |
| 13 | |
| 14 | private: |
| 15 | int _amount; |
| 16 | }; |
| 17 | |
| 18 | struct Human { |
| 19 | Human(int breath); |
nothing calls this directly
no outgoing calls
no test coverage detected