mirror of
https://github.com/open-goal/jak-project
synced 2026-08-17 13:40:39 -04:00
32 lines
717 B
Common Lisp
32 lines
717 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
(bundles "ENGINE.CGO" "GAME.CGO")
|
|
(require "engine/gfx/hw/display-h.gc")
|
|
(require "engine/draw/drawable-inline-array-h.gc")
|
|
|
|
;; name: drawable-inline-array.gc
|
|
;; name in dgo: drawable-inline-array
|
|
;; dgos: GAME, ENGINE
|
|
|
|
;; - All these methods are stubs
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(defmethod length ((this drawable-inline-array))
|
|
(-> this length))
|
|
|
|
(defmethod login ((this drawable-inline-array))
|
|
this)
|
|
|
|
(defmethod draw ((this drawable-inline-array) (arg0 drawable-inline-array) (arg1 display-frame))
|
|
0
|
|
(none))
|
|
|
|
(defmethod collect-stats ((this drawable-inline-array))
|
|
0
|
|
(none))
|
|
|
|
(defmethod debug-draw ((this drawable-inline-array) (arg0 drawable) (arg1 display-frame))
|
|
0
|
|
(none))
|