mirror of
https://github.com/open-goal/jak-project
synced 2026-05-24 15:21:12 -04:00
35 lines
924 B
Common Lisp
Vendored
Generated
35 lines
924 B
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition for method 4 of type drawable-inline-array
|
|
(defmethod length ((this drawable-inline-array))
|
|
(-> this length)
|
|
)
|
|
|
|
;; definition for method 9 of type drawable-inline-array
|
|
(defmethod login ((this drawable-inline-array))
|
|
"Initialize the object after it is loaded."
|
|
this
|
|
)
|
|
|
|
;; definition for method 10 of type drawable-inline-array
|
|
;; WARN: Return type mismatch int vs none.
|
|
(defmethod draw ((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 ((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 ((this drawable-inline-array) (arg0 drawable) (arg1 display-frame))
|
|
0
|
|
(none)
|
|
)
|