mirror of
https://github.com/open-goal/jak-project
synced 2026-06-30 11:51:55 -04:00
17 lines
289 B
Common Lisp
17 lines
289 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: decomp-h.gc
|
|
;; name in dgo: decomp-h
|
|
;; dgos: ENGINE, GAME
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(deftype decomp-work (structure)
|
|
((buffer0 uint8 2048)
|
|
(buffer1 uint8 2048)
|
|
(indices uint16 2048)
|
|
(temp-indices uint16 2048)
|
|
)
|
|
)
|