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