mirror of
https://github.com/open-goal/jak-project
synced 2026-05-26 23:47:57 -04:00
8a18072d97
* git: ignore vs build dir * cmake: ditch `clang-cl` on windows in favor of actual `clang` * build: suppress a significant number of warnings * build: adjust workflows and vendor nasm * docs: update docs to remove `clang-cl` mentions * tests: move jak1 reference tests into their own folder * tests: update offline tests to support multiple games * tests: some additional fixes and multi-game handling * tests: update reference tests
34 lines
981 B
Common Lisp
Vendored
Generated
34 lines
981 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-inline-array) (arg1 display-frame))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
;; definition for method 14 of type drawable-inline-array
|
|
;; INFO: Return type mismatch int vs none.
|
|
(defmethod collect-stats 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 display-frame))
|
|
0
|
|
(none)
|
|
)
|