jak-project/goal_src/engine/draw/drawable-actor-h.gc

32 lines
585 B
Common Lisp
Raw Normal View History

;;-*-Lisp-*-
2020-09-04 14:44:23 -04:00
(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_))
0
)