mirror of
https://github.com/open-goal/jak-project
synced 2026-07-11 07:25:37 -04:00
18 lines
508 B
Common Lisp
18 lines
508 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: cam-interface-h.gc
|
|
;; name in dgo: cam-interface-h
|
|
;; dgos: ENGINE, GAME
|
|
|
|
(define-extern math-camera-matrix (function matrix))
|
|
(define-extern camera-pos (function vector))
|
|
(define-extern math-camera-pos (function vector))
|
|
(define-extern matrix-local->world (function symbol symbol matrix))
|
|
(define-extern matrix-world->local (function symbol object matrix))
|
|
(define-extern camera-matrix (function matrix))
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(define-perm *camera-init-mat* matrix #f)
|