jMonkeyEngine Hello World in Clojure

I was experimenting with jMonkeyEngine in order to visualize a simulation, later I scrapped the idea thinking it was going to take way to much time just to make it look cool and switched to a 2D engine. I had already ported their Hello World example to Clojure so I am posting it here to give anyone who want to play with jMonkeyEngine a head start, I have uploaded all necessary jars to Clojars, use lein to grab everything you need,

( defproject monkey-test "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license { :name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html" } :dependencies [[ org.clojure /clojure "1.4.0" ] [ org.clojars.nakkaya.jmonkeyengine /jme "2.0.1" ] [ penumbra /lwjgl "2.4.2" ]])

All tutorials on jMonkeyEngine wiki, makes use of SimpleGame class, we add stuff to our scene by attaching objects to rootNode of SimpleGame which is defined as protected hence we can't use this in Clojure, we don't have access to protected fields when using proxy so below example uses StandartGame instead,