| 63 | extern void _AndroidGameInnerLoop(); |
| 64 | |
| 65 | double timeGetTime() { |
| 66 | |
| 67 | struct timeval tv; |
| 68 | gettimeofday(&tv, NULL); |
| 69 | |
| 70 | return ((tv.tv_sec) * 1000.0 + (tv.tv_usec) / 1000.0); |
| 71 | |
| 72 | } |
| 73 | |
| 74 | void toggleSplashScreen(bool show) |
| 75 | { |
no outgoing calls
no test coverage detected