| 390 | } |
| 391 | |
| 392 | static bool GameLoop_IsInRange(uint16 x, uint16 y, uint16 minX, uint16 minY, uint16 maxX, uint16 maxY) |
| 393 | { |
| 394 | return x >= minX && x <= maxX && y >= minY && y <= maxY; |
| 395 | } |
| 396 | |
| 397 | static uint16 GameLoop_HandleEvents(const char **strings) |
| 398 | { |
no outgoing calls
no test coverage detected