Files
jak-project/goal_src/jak1/engine/draw/drawable-inline-array.gc
2023-09-30 10:24:37 -04:00

33 lines
714 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: drawable-inline-array.gc
;; name in dgo: drawable-inline-array
;; dgos: GAME, ENGINE
;; - All these methods are stubs
;; DECOMP BEGINS
(defmethod length drawable-inline-array ((this drawable-inline-array))
(-> this length)
)
(defmethod login drawable-inline-array ((this drawable-inline-array))
this
)
(defmethod draw drawable-inline-array ((this drawable-inline-array) (arg0 drawable-inline-array) (arg1 display-frame))
(none)
)
(defmethod collect-stats drawable-inline-array ((this drawable-inline-array))
0
(none)
)
(defmethod debug-draw drawable-inline-array ((this drawable-inline-array) (arg0 drawable) (arg1 display-frame))
0
(none)
)