Student student1 = new Student();
but in this tutorial i am following the author created 2 Image objects in a different way:
plane = new Image("data/plane.png");
land = new Image("data/land.jpg");
what is he doing above? is he creating 2 Image objects or is he doing something else? is this not the correct way to create an object below?:
Image plane = new Image("data/plane.png");
Image land = new Image("data/land.jpg");
Edited by Darego, 11 January 2013 - 12:58 PM.






