mirror of
https://github.com/open-goal/jak-project
synced 2026-08-10 03:06:18 -04:00
15 lines
279 B
Common Lisp
15 lines
279 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: actor-hash-h.gc
|
|
;; name in dgo: actor-hash-h
|
|
;; dgos: GAME
|
|
|
|
(define-extern update-actor-hash (function none))
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(define *actor-list* (the-as (pointer collide-shape) (malloc 'global 1024)))
|
|
|
|
(define *actor-list-length* 0)
|