| 220 | // Update Loop |
| 221 | |
| 222 | size_t Remote::tick(u32 currentTimeMs) { |
| 223 | // Clear previous results |
| 224 | mResults.clear(); |
| 225 | |
| 226 | // Delegate to generic scheduler - tasks handle their own execution and result recording |
| 227 | return mScheduler.tick(currentTimeMs); |
| 228 | } |
| 229 | |
| 230 | // Utility Methods |
| 231 |
no test coverage detected