0
how to make a game endless
plz let me know
1 Antwort
0
Use a loop to make it keep going.
OK, seriously there are few ways depending on the type of game. You can use an algorithm to set up each level, ie function setupLevel(int level);
Then increase the level each the player passes 1.
This strategy would work well for a space invaders style game (and others).