I am making a game where I need to access all of the Labels on the screen from my World (called Arena)
There is one error that I cannot expel, which is:
incompatible types: no instances(s) of type variable(s) A exist so that java.util.List<A> conforms to java.util.ArrayList<Label>.
If you could fix my error and also tell me why exactly this is happening that would be fantastic!
ArrayList<Label> kfls = getObjects(Label.class);


