Add template

This commit is contained in:
oakes
2014-01-18 20:15:29 -05:00
parent 6bfbdce2c7
commit f5860b976b
17 changed files with 337 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
(ns {{desktop-namespace}}
(:require [{{namespace}} :refer :all])
(:import [com.badlogic.gdx.backends.lwjgl LwjglApplication]
[org.lwjgl.input Keyboard])
(:gen-class))
(defn -main
[]
(LwjglApplication. {{app-name}} "{{app-name}}" 800 600 true)
(Keyboard/enableRepeatEvents true))