mirror of
https://github.com/open-goal/jak-project
synced 2026-06-03 10:32:08 -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...
34 lines
988 B
Common Lisp
Vendored
Generated
34 lines
988 B
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition for method 4 of type drawable-inline-array
|
|
(defmethod length drawable-inline-array ((this drawable-inline-array))
|
|
(-> this length)
|
|
)
|
|
|
|
;; definition for method 9 of type drawable-inline-array
|
|
(defmethod login drawable-inline-array ((this drawable-inline-array))
|
|
this
|
|
)
|
|
|
|
;; definition for method 10 of type drawable-inline-array
|
|
;; WARN: Return type mismatch int vs none.
|
|
(defmethod draw drawable-inline-array ((this drawable-inline-array) (arg0 drawable-inline-array) (arg1 display-frame))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
;; definition for method 13 of type drawable-inline-array
|
|
;; WARN: Return type mismatch int vs none.
|
|
(defmethod collect-stats drawable-inline-array ((this drawable-inline-array))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
;; definition for method 14 of type drawable-inline-array
|
|
;; WARN: Return type mismatch int vs none.
|
|
(defmethod debug-draw drawable-inline-array ((this drawable-inline-array) (arg0 drawable) (arg1 display-frame))
|
|
0
|
|
(none)
|
|
)
|