mirror of
https://github.com/open-goal/jak-project
synced 2026-05-25 15:25:31 -04:00
3afd99a8e3
* temp * some decomp * tfrag dma setup * fix negative label bug * tfrag dma setup * tfrag, with pipeline tricks * kinda works * cleanup before trying some color stuff * time of day works * clean up * temp before render changes * a few more fixes * fix up tests * clean up * fix * fix alignment * one more cleanup
31 lines
676 B
Common Lisp
31 lines
676 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 collect-stats drawable-inline-array ((obj drawable-inline-array))
|
|
0
|
|
(none)
|
|
)
|
|
|
|
(defmethod debug-draw drawable-inline-array ((obj drawable-inline-array) (arg0 drawable) (arg1 display-frame))
|
|
0
|
|
(none)
|
|
)
|