;;-*-Lisp-*- (in-package goal) ;; definition for method 4 of type drawable-inline-array (defmethod length ((this drawable-inline-array)) (-> this length) ) ;; definition for method 9 of type drawable-inline-array (defmethod login ((this drawable-inline-array)) "Initialize the object after it is loaded." this ) ;; definition for method 10 of type drawable-inline-array ;; WARN: Return type mismatch int vs none. (defmethod draw ((this drawable-inline-array)) "Draw the drawable, and typically its children. This usually means adding stuff to a list to be drawn later, rather than expensive drawing here." 0 (none) ) ;; definition for method 13 of type drawable-inline-array ;; WARN: Return type mismatch int vs none. (defmethod collect-stats ((this drawable-inline-array)) "Collect triangle/perf statistics for rendering. This is only called when viewing stats. The vis-bits and culling registers are loaded during this time." 0 (none) ) ;; definition for method 14 of type drawable-inline-array ;; WARN: Return type mismatch int vs none. (defmethod debug-draw ((this drawable-inline-array)) "Debug-draw a drawable and its children. Typically uses the debug-draw functions." 0 (none) )