mirror of
https://github.com/open-goal/jak-project
synced 2026-09-02 02:02:51 -04:00
fc105e1f55
* decomp: Good portion of `collide-frag` * decomp: Remove redundant method declarations for drawable types * decomp: Finish `collide-frag` Co-authored-by: water111 <48171810+water111@users.noreply.github.com>
32 lines
622 B
Common Lisp
32 lines
622 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: drawable-actor-h.gc
|
|
;; name in dgo: drawable-actor-h
|
|
;; dgos: GAME, ENGINE
|
|
|
|
(deftype drawable-actor (drawable)
|
|
((actor basic :offset 8)
|
|
)
|
|
:method-count-assert 18
|
|
:size-assert #x20
|
|
:flag-assert #x1200000020
|
|
)
|
|
|
|
|
|
(deftype drawable-tree-actor (drawable-tree)
|
|
()
|
|
:flag-assert #x1200000024
|
|
)
|
|
|
|
(deftype drawable-inline-array-actor (drawable-inline-array)
|
|
((data drawable-actor 1 :inline)
|
|
(pad uint8 4))
|
|
:flag-assert #x1200000044
|
|
)
|
|
|
|
|
|
(defmethod dummy-10 drawable-tree-actor ((obj _type_) (arg0 drawable) (arg1 display-frame))
|
|
0
|
|
)
|