Does anyone know how to change the height and width of the game window itself? I don't think it's (size!)
tbh I was having trouble getting play-clj to work a while ago but I wanted to try again soon. Have you tried messing :width or :height?
; input/output
(defn game
"Provides quick access to often-used functions.
(game :width)"
[k & [arg]]
(case k
:width (graphics! :get-width)
:height (graphics! :get-height)
:fps (graphics! :get-frames-per-second)
:fullscreen? (graphics! :is-fullscreen)
:touched? (input! :is-touched)
:x (input! :get-x (or arg 0))
:y (- (graphics! :get-height) (input! :get-y (or arg 0)))
:point-x (game :x arg)
:point-y (game :y arg)
(u/throw-key-not-found k)))