mirror of
https://github.com/open-goal/jak-project
synced 2026-06-24 09:51:29 -04:00
57eca1dee9
* decompile ocean trans tables * more * exclude tables from decomp progress * format'
38 lines
719 B
Common Lisp
38 lines
719 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: art-h.gc
|
|
;; name in dgo: art-h
|
|
;; dgos: GAME, ENGINE
|
|
|
|
;; TODO more
|
|
(deftype art (basic)
|
|
((name basic :offset 8)
|
|
(length int32 :offset-assert 12)
|
|
(extra basic :offset-assert 16)
|
|
)
|
|
:method-count-assert 13
|
|
:size-assert #x14
|
|
:flag-assert #xd00000014
|
|
(:methods
|
|
(dummy-9 () none 9)
|
|
(dummy-10 () none 10)
|
|
(dummy-11 () none 11)
|
|
(dummy-12 () none 12)
|
|
)
|
|
)
|
|
|
|
;; art-h
|
|
(deftype art-element (art)
|
|
((pad uint8 12))
|
|
:method-count-assert 13
|
|
:size-assert #x20
|
|
:flag-assert #xd00000020
|
|
(:methods
|
|
(dummy-9 () none 9)
|
|
(dummy-10 () none 10)
|
|
(dummy-11 () none 11)
|
|
(dummy-12 () none 12)
|
|
)
|
|
)
|