changeLaneSpeed method
Changes the lane speed of the level. Provide a positive change to increase the lane speed, a negative change to decrease the lane speed.
Implementation
void changeLaneSpeed(int change) {
this.laneSpeed += change;
}
Changes the lane speed of the level. Provide a positive change to increase the lane speed, a negative change to decrease the lane speed.
void changeLaneSpeed(int change) {
this.laneSpeed += change;
}