added keybinds

This commit is contained in:
2026-03-06 01:43:48 +02:00
parent 99f68e655f
commit 9b4cec7920
15 changed files with 242 additions and 55 deletions

View File

@@ -99,6 +99,7 @@ extern "C" void FunnyMain( int argc, char **argv )
}
Console()->Execute();
double fPrevious = Plat_GetTime();
for (;;) {
#ifdef STEAM
@@ -108,6 +109,7 @@ extern "C" void FunnyMain( int argc, char **argv )
double fDelta = fCurrent-fPrevious;
fPrevious = fCurrent;
g_pHumanDeviceManager->Frame();
g_pServerGame->m_pBridge->Frame(fDelta);
@@ -117,6 +119,8 @@ extern "C" void FunnyMain( int argc, char **argv )
g_pClientGame->m_pBridge->Frame(fDelta);
g_pRenderContext->Frame(fDelta);
}
Console()->Execute();
};