mirror of
https://github.com/open-goal/jak-project
synced 2026-08-04 01:04:11 -04:00
d6f631383e
* more level stuff * vi1 to jun load working, with multiple skies * small fixes * add level ref test * clang
20 lines
349 B
Common Lisp
20 lines
349 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: drawable-group-h.gc
|
|
;; name in dgo: drawable-group-h
|
|
;; dgos: GAME, ENGINE
|
|
|
|
|
|
(deftype drawable-group (drawable)
|
|
((length int16 :offset 6)
|
|
(data drawable 1 :offset-assert 32)
|
|
)
|
|
(:methods
|
|
(new (symbol type int) _type_)
|
|
)
|
|
:flag-assert #x1200000024
|
|
)
|
|
|
|
(define *collide-nodes* 0)
|