mirror of
https://github.com/open-goal/jak-project
synced 2026-05-28 08:25:56 -04:00
d6f631383e
* more level stuff * vi1 to jun load working, with multiple skies * small fixes * add level ref test * clang
40 lines
968 B
Common Lisp
Vendored
Generated
40 lines
968 B
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition for method 4 of type drawable-inline-array
|
|
(defmethod length drawable-inline-array ((obj drawable-inline-array))
|
|
(-> obj length)
|
|
)
|
|
|
|
;; definition for method 9 of type drawable-inline-array
|
|
(defmethod login drawable-inline-array ((obj drawable-inline-array))
|
|
obj
|
|
)
|
|
|
|
;; definition for method 10 of type drawable-inline-array
|
|
;; INFO: Return type mismatch int vs none.
|
|
(defmethod
|
|
draw
|
|
drawable-inline-array
|
|
((obj drawable-inline-array) (arg0 drawable) (arg1 display-frame))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
;; definition for method 14 of type drawable-inline-array
|
|
;; INFO: Return type mismatch int vs none.
|
|
(defmethod dummy-14 drawable-inline-array ((obj drawable-inline-array))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
;; definition for method 15 of type drawable-inline-array
|
|
;; INFO: Return type mismatch int vs none.
|
|
(defmethod
|
|
debug-draw
|
|
drawable-inline-array
|
|
((obj drawable-inline-array) (arg0 drawable) (arg1 object))
|
|
0
|
|
(none)
|
|
)
|