--configuration
function love.config( t )
t.window.width = 800
t.window.height = 400
t.console = true
end
function load.love( )
-- body
end
function update.love( dt )
-- body
end
function draw.love( )
love.graphics.print("Hello World")
end
soo....yeah :/
Last edited by Noob_Maker on Sun Oct 16, 2016 8:13 pm, edited 2 times in total.