jak-project/goal_src/engine/draw/drawable-inline-array.gc
water111 2b6684aa5c
[decompiler] Working toward bsp (#717)
* clean up

* before int to float stuff

* before trying to eliminate the separate read and write maps

* partial fix for register issues

* add missing include
2021-07-25 15:30:37 -04:00

31 lines
660 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 dummy-15 drawable-inline-array ((obj drawable-inline-array) (arg0 object) (arg1 object))
0
(none)
)