13 lines
400 B
Plaintext
13 lines
400 B
Plaintext
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
|
|
|