Hey guys, i’m rewriting my brickbreaker game to clean up code a bit, add a few things, etc. I’ve found a couple of tutorials for making screens, but i’m a bit confused about one thing in particular. I have my main class which is Game.java. In Game.java the class Implements ApplicationListener. I know I need to implement the application listener, but all of the tutorials are telling me, it should extend Game instead.
public class Game implements ApplicationListener {
I made another class thinking that, that should be my main class and it should extend game…But it doesnt seem right. I’m not sure I explained it correctly…Let me know if you understand what i’m saying.