Best code structure for arcade games
- by user280454
Hi, I've developed a few arcade games so far and have the following structure in almost all of them: I have 1 file which contains a class called kernel with the following functions:
init()
welcome_screen()
menu_screen()
help_Screen()
play_game()
end_screen()
And another file, called Game, which basically calls all these functions and controls…