| 10 | CApplication g_App; |
| 11 | |
| 12 | void CApplication::OnMainLoop() |
| 13 | { |
| 14 | //DEBUG_TRACE_FUNCTION; |
| 15 | g_Ticks = SDL_GetTicks(); |
| 16 | g_ConnectionManager.Recv(); |
| 17 | g_PacketManager.ProcessPluginPackets(); |
| 18 | g_PacketManager.SendMegaClilocRequests(); |
| 19 | g_Game.Process(true); |
| 20 | } |
nothing calls this directly
no test coverage detected