Skip to content

Instantly share code, notes, and snippets.

@TheLinx
Created October 30, 2009 23:01
Show Gist options
  • Save TheLinx/222794 to your computer and use it in GitHub Desktop.
Save TheLinx/222794 to your computer and use it in GitHub Desktop.
if love._version ~= 60 then
function load()
love.graphics.setFont(love.default_font, 32)
end
function draw()
love.graphics.draw("Hello! You're running LOVE 0.5.0!", 40, 50)
love.graphics.draw("However, this game was made for LOVE 0.6.0.", 40, 100)
love.graphics.draw("To run this game you must get a recent build", 40, 150)
love.graphics.draw("from the builds page or build it yourself from", 40, 200)
love.graphics.draw("the mercurial repo. Please visit the following", 40, 250)
love.graphics.draw("link: http://j.mp/love060beta", 40, 300)
end
else
-- your game goes here
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment