Files
jak-project/goal_src/jak2/engine/camera/cam-interface-h.gc
ManDude 04269ffa86 [jak2] fill in a lot of flags for decomp + mouse macros (#2927)
Also changed the default type of enums to `int64` (same as `int`).
2023-08-22 16:39:52 +01:00

28 lines
623 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: cam-interface-h.gc
;; name in dgo: cam-interface-h
;; dgos: ENGINE, GAME
(define-extern camera-pos (function vector))
(define-extern position-in-front-of-camera! (function vector float float vector))
(define-extern math-camera-matrix
"Returns [[*math-camera*]]'s `inv-camera-rot`"
(function matrix))
(define-extern matrix-local->world (function symbol symbol matrix))
;; DECOMP BEGINS
(define-perm *camera-init-mat* matrix #f)
(define-perm *camera* camera-master #f)
(define-perm *camera-combiner* camera-combiner #f)
(define-extern math-camera-pos (function vector))