Files
jak-project/goal_src/engine/draw/drawable-inline-array.gc
T
ManDude c245f37feb [decomp] joint and related (#1003)
* update jak 2 config and hack to make game text dumpable

* update stuff

* update src

* do `cspace<-parented-transformq-joint!`

* progress.... kind of...

* more drawable stuff

* clagng

* bones begin

* more bones

* even more bones

* everything builds

* touches

* errors

* ?

* fix `quicksandlurker`

* updates

* update refs

* more fixes

* update refs
2021-12-26 11:43:16 -05:00

31 lines
689 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-inline-array) (arg1 display-frame))
(none)
)
(defmethod collect-stats drawable-inline-array ((obj drawable-inline-array))
0
(none)
)
(defmethod debug-draw drawable-inline-array ((obj drawable-inline-array) (arg0 drawable) (arg1 display-frame))
0
(none)
)