mirror of
https://github.com/open-goal/jak-project
synced 2026-05-30 00:47:20 -04:00
d6f631383e
* more level stuff * vi1 to jun load working, with multiple skies * small fixes * add level ref test * clang
31 lines
664 B
Common Lisp
31 lines
664 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: drawable-inline-array.gc
|
|
;; name in dgo: drawable-inline-array
|
|
;; dgos: GAME, ENGINE
|
|
|
|
;; - All these methods are stubs
|
|
|
|
(defmethod length drawable-inline-array ((obj drawable-inline-array))
|
|
(-> obj length)
|
|
)
|
|
|
|
(defmethod login drawable-inline-array ((obj drawable-inline-array))
|
|
obj
|
|
)
|
|
|
|
(defmethod draw drawable-inline-array ((obj drawable-inline-array) (arg0 drawable) (arg1 display-frame))
|
|
(none)
|
|
)
|
|
|
|
(defmethod dummy-14 drawable-inline-array ((obj drawable-inline-array))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
(defmethod debug-draw drawable-inline-array ((obj drawable-inline-array) (arg0 drawable) (arg1 object))
|
|
0
|
|
(none)
|
|
)
|