Skip to content

Instantly share code, notes, and snippets.

@jcromartie
Created October 16, 2012 21:00
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 jcromartie/8c91a431b7bc4b14775a to your computer and use it in GitHub Desktop.
Save jcromartie/8c91a431b7bc4b14775a to your computer and use it in GitHub Desktop.
(deftype listener [keys mouse-coords mouse-buttons]
KeyListener
(keyPressed [e] (swap! keys conj (.getKeyCode e)))
(keyReleased [e] (swap! keys disj (.getKeyCode e)))
(keyTyped [e] nil))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment