api: add setCameraYawTarget

This commit is contained in:
Adam
2021-06-07 18:52:40 -04:00
parent d75a50a236
commit 89a3838275

View File

@@ -619,12 +619,19 @@ public interface Client extends GameEngine
boolean isMenuOpen(); boolean isMenuOpen();
/** /**
* Gets the angle of the map, or camera yaw. * Gets the angle of the map, or target camera yaw.
* *
* @return the map angle * @return the map angle
*/ */
int getMapAngle(); int getMapAngle();
/**
* Set the target camera yaw
*
* @param cameraYawTarget
*/
void setCameraYawTarget(int cameraYawTarget);
/** /**
* Checks whether the client window is currently resized. * Checks whether the client window is currently resized.
* *