mirror of
https://github.com/open-goal/jak-project
synced 2026-06-20 08:13:33 -04:00
fc43870d85
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...
32 lines
684 B
Common Lisp
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)
|
|
)
|