mirror of
https://github.com/open-goal/jak-project
synced 2026-05-24 15:21:12 -04:00
2b6684aa5c
* clean up * before int to float stuff * before trying to eliminate the separate read and write maps * partial fix for register issues * add missing include
40 lines
964 B
Common Lisp
Vendored
40 lines
964 B
Common Lisp
Vendored
;;-*-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
|
|
dummy-15
|
|
drawable-inline-array
|
|
((obj drawable-inline-array) (arg0 object) (arg1 object))
|
|
0
|
|
(none)
|
|
)
|