update method
Updates the Entity coordinates with it´s dy and dx values
Implementation
void update() {
this.x += this.getDx();
this.y += this.getDy();
return;
}
Updates the Entity coordinates with it´s dy and dx values
void update() {
this.x += this.getDx();
this.y += this.getDy();
return;
}