Basic Client Side Prediction

This commit is contained in:
2023-07-09 01:15:05 +01:00
committed by Barry Kane
parent 2222e25e86
commit 89739eb93d
4 changed files with 52 additions and 12 deletions

View File

@ -70,10 +70,10 @@ void * networkThreadHandler(void * arguments)
void * gameThreadHandler(void * arguments)
{
while(true)
while (true)
{
doGameTick(arguments);
usleep(9000);
usleep(15625);
}
}
int main(int argc, char ** argv)