This repository has been archived on 2018-09-11. You can view files and clone it, but cannot push or open issues/pull-requests.
menu-danmaku/menu.moon

13 lines
400 B
Plaintext
Raw Permalink Normal View History

2017-06-14 19:01:40 +00:00
homeBackground = nil
-- Load elements. What did you expect?!
love.load = (arg) ->
homeBackground = love.graphics.newImage "assets/Pond_in_Proteus_1024-800.png"
-- Display Hello World
love.draw = ->
--love.graphics.print "Hello World!", 400, 300
love.graphics.draw homeBackground, 0, 0
love.graphics.print "Hello World!", love.graphics.getWidth() / 2, love.graphics.getHeight() / 2