I have seen others have differentiated between instance variables and parameters. Why don't we just use the same name?
1 2 3 4 5 6 | public Creature( int speedP) { speed = speedP; // Please explain why I need to do this. drawCreatureImage(); orientCreature(); } |