mirror of
https://github.com/open-goal/jak-project
synced 2026-05-26 15:46:14 -04:00
c235280b91
* [decomp] clean up files 50-100 * update file, fix crash on too many prims * spelling is hard
22 lines
726 B
Common Lisp
22 lines
726 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: drawable-inline-array-h.gc
|
|
;; name in dgo: drawable-inline-array-h
|
|
;; dgos: GAME, ENGINE
|
|
|
|
;; the drawable-inline-array is the other base class for a drawable container.
|
|
;; like drawable-group, it is a drawable itself.
|
|
;; it's used over drawable-group when there are a lot of drawables to iterate over because it is faster.
|
|
|
|
;; a drawable-inline-array itself has no idea what it stores so you almost always need a more specific type.
|
|
;; without a more specific type, the stride of the elements is unknown.
|
|
|
|
(deftype drawable-inline-array (drawable)
|
|
((length int16 :offset 6)
|
|
)
|
|
:method-count-assert 18
|
|
:size-assert #x20
|
|
:flag-assert #x1200000020
|
|
)
|