Files
jak-project/goal_src/engine/draw/drawable-inline-array.gc
T
water111 d6f631383e decomp more level stuff (#932)
* more level stuff

* vi1 to jun load working, with multiple skies

* small fixes

* add level ref test

* clang
2021-10-23 16:00:49 -04:00

31 lines
664 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
(defmethod length drawable-inline-array ((obj drawable-inline-array))
(-> obj length)
)
(defmethod login drawable-inline-array ((obj drawable-inline-array))
obj
)
(defmethod draw drawable-inline-array ((obj drawable-inline-array) (arg0 drawable) (arg1 display-frame))
(none)
)
(defmethod dummy-14 drawable-inline-array ((obj drawable-inline-array))
0
(none)
)
(defmethod debug-draw drawable-inline-array ((obj drawable-inline-array) (arg0 drawable) (arg1 object))
0
(none)
)