mirror of
https://github.com/open-goal/jak-project
synced 2026-07-04 21:35:47 -04:00
57eca1dee9
* decompile ocean trans tables * more * exclude tables from decomp progress * format'
18 lines
442 B
Common Lisp
18 lines
442 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: engines.gc
|
|
;; name in dgo: engines
|
|
;; dgos: GAME, ENGINE
|
|
|
|
|
|
;; Allocate some engines.
|
|
|
|
(define *background-draw-engine* (new 'global 'engine 'draw 10))
|
|
(define *matrix-engine* (new 'global 'boxed-array handle 1024))
|
|
(set! (-> *matrix-engine* length) 0)
|
|
(define *camera-engine* (new 'global 'engine 'camera-eng 128))
|
|
(if *debug-segment*
|
|
(define *debug-engine* (new 'debug 'engine 'debug 512))
|
|
)
|