Views
love.quit
Available since LÖVE 0.7.0 |
This callback is not supported in earlier versions. |
Callback function triggered when the game is closed.
Contents |
Function
Synopsis
r = love.quit()
Arguments
None.
Returns
boolean r
- Abort quitting. If true, do not close the game.
Example
function love.quit()
--This will be printed to the console on quit
print("Thanks for playing. Please play again soon!")
end
--This will be printed to the console on quit
print("Thanks for playing. Please play again soon!")
end