Skip to content

Instantly share code, notes, and snippets.

@walesmd
Created October 8, 2010 14:32
Show Gist options
  • Select an option

  • Save walesmd/616888 to your computer and use it in GitHub Desktop.

Select an option

Save walesmd/616888 to your computer and use it in GitHub Desktop.
function love.load()
love.graphics.setBackgroundColor(0, 0, 0)
end
function love.update(dt)
end
function love.draw()
love.graphics.setColor(255, 255, 255)
love.graphics.point(love.graphics.getWidth() / 2, love.graphics.getHeight() / 2)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment