Hi!
I've got these two lines of code and I need them to loop through the entire game.
I tried to cheat and put them in the "render()" of my "InGameScreen" (extends "Screen"), but because "prepare()" seems not to be loaded before "render()", that didn't work.
I definitely don't know where to put them because everything in the game needs to be initialized before looping these two lines in the background.
Is there a function to do this, like by using "Game.loop()"?
Obviously, "IUpdatable" didn't help in the "InGameScreen" class.