AddToCameraPos /Environment and display

void AddToCameraPos(vector2 direction)

Scrolls the scene by adding the direction vector to the camera position.

Sample:

// moves the camera 20 pixels to the right
vector2 rightDirection(20.0f, 0.0f);
AddToCameraPos(rightDirection);