Skip to content

Instantly share code, notes, and snippets.

@drone29a
Created February 12, 2009 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drone29a/62795 to your computer and use it in GitHub Desktop.
Save drone29a/62795 to your computer and use it in GitHub Desktop.
;;; In your gen-class:
:exposes-methods {update superUpdate
render superRender
doDebug superDoDebug}
;;; Your subclasses update that calls the super's update method which was mapped to
;;; superUpdate
(defn -update
[this #^Float/TYPE interp]
(.superUpdate this interp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment