Files
jak-project/goal_src/jak2/engine/draw/drawable-inline-array.gc
T
Hat Kid fc43870d85 decompiler: obj -> this, set-time! and time-elapsed? macros (#3026)
This renames the method object in `defmethod`s to `this` and adds
detection for the `set-time!` and `time-elapsed?` macros.

Definitely my biggest PR yet...
2023-09-26 15:17:00 +01:00

32 lines
684 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: drawable-inline-array.gc
;; name in dgo: drawable-inline-array
;; dgos: ENGINE, GAME
;; 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))
0
(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)
)