Hey,
I wrote a program and I need to get the X and Y Positions from up to 5 objects of the class "Stone". The function just works for one object. How can I make this work for more Objects?
Actor stone = (Actor)getWorld().getObjects(Stone.class).get(0); xPos = stone.getX(); yPos = stone.getY();
