mirror of
https://github.com/open-goal/jak-project
synced 2026-06-18 23:37:22 -04:00
04269ffa86
Also changed the default type of enums to `int64` (same as `int`).
28 lines
623 B
Common Lisp
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))
|