7 void Thing::addSpeed(double xspeed
, double yspeed
) {
8 velocidade
.x
+= xspeed
;
9 velocidade
.y
+= yspeed
;
12 void Thing::setSpeed(double xspeed
, double yspeed
) {
13 velocidade
.x
= xspeed
;
14 velocidade
.y
= yspeed
;
17 void Thing::setPosition(double x
, double y
) {
23 posicao
.x
+= velocidade
.x
;
24 posicao
.y
+= velocidade
.y
;
27 Rect
Thing::getBaseRect() {