| 86 | } |
| 87 | |
| 88 | struct ApplicationState |
| 89 | { |
| 90 | static constexpr int NumPauseFrames = 2; |
| 91 | |
| 92 | int pausedCounter = 0; |
| 93 | int continueDrawingForMs = 500; |
| 94 | int timeoutOccursEveryMs = 2000; |
| 95 | int numberOfFrames = 0; |
| 96 | |
| 97 | // EventLoop |
| 98 | String loopMessage = "Waiting for first timeout..."; |
| 99 | int loopTimeouts = 1; |
| 100 | |
| 101 | Time::Monotonic loopTime; |
| 102 | }; |
| 103 | |
| 104 | struct ApplicationSystem |
| 105 | { |
nothing calls this directly
no outgoing calls
no test coverage detected