15 lines
266 B
TypeScript
15 lines
266 B
TypeScript
/**
|
|
* Cam Functions
|
|
* @public
|
|
* @noSelf
|
|
*/
|
|
declare namespace cam {
|
|
|
|
function get_gameplay_cam_rot(): v3;
|
|
function get_gameplay_cam_pos(): v3;
|
|
function get_gameplay_cam_relative_pitch(): float;
|
|
function get_gameplay_cam_relative_yaw(): float;
|
|
|
|
}
|
|
|