Files
jak-project/goal_src/jak1/engine/draw/drawable-inline-array.gc
T
2024-05-20 15:04:15 -04:00

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))