This commit is contained in:
2014-08-26 19:26:58 -07:00
commit 2c38a57e48
59 changed files with 516 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
(ns advent.core.desktop-launcher
(:require [advent.core :refer :all])
(:import [com.badlogic.gdx.backends.lwjgl LwjglApplication]
[org.lwjgl.input Keyboard])
(:gen-class))
(defn -main
[]
(LwjglApplication. advent "advent" 1920 1080)
(Keyboard/enableRepeatEvents true))