I am trying to populate a world with objects with different images.
I'm using this kind of code.
private void populate()
{
Player player = new Player();
addObject(player, 250, 510);
}


