You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
400 B
12 lines
400 B
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
|
|
|
|
|