render( )
This is where you should draw things onto the screen.
Usage
render( )
Arguments
None
Returns
Nothing
Examples
Example 1: Drawing stuff on screen
function render()
-- Draw a message on screen.
love.graphics:draw("Hello LOVE", 100, 100)
end