move method

void move(
  1. Vector2 delta
)

Implementation

void move(Vector2 delta) {
  position.add(delta);
}