Revert "Add camera setters to Client.java and RSClient.java."

This reverts commit abb28ca5fb.

These methods don't do what they say and what they actually do isn't
useful
This commit is contained in:
Max Weber
2018-09-17 23:00:43 -06:00
parent 45cb0bcde7
commit 5d20bbd22c
2 changed files with 0 additions and 52 deletions

View File

@@ -1479,39 +1479,4 @@ public interface Client extends GameEngine
* @param world target world to hop to
*/
void hopToWorld(World world);
/**
* Sets the x-axis coordinate of the camera.
*
* @param cameraX the new camera x-value.
*/
void setCameraX(int cameraX);
/**
* Sets the y-axis coordinate of the camera.
*
* @param cameraY the new camera y-value.
*/
void setCameraY(int cameraY);
/**
* Sets the z-axis coordinate of the camera.
*
* @param cameraZ the new camera z-value.
*/
void setCameraZ(int cameraZ);
/**
* Sets the pitch of the camera.
*
* @param cameraPitch the new camera pitch.
*/
void setCameraPitch(int cameraPitch);
/**
* Sets the yaw of the camera.
*
* @param cameraYaw the new camera yaw.
*/
void setCameraYaw(int cameraYaw);
}