Difference between revisions of "love.event.quit"

m (Removed mention of love.event.push('q') (not used in 0.8.0))
m (quit doesn't return, right?)
Line 10: Line 10:
 
None.
 
None.
 
=== Returns ===
 
=== Returns ===
Nothing.
+
Doesn't return.
 
=== Example ===
 
=== Example ===
 
<source lang="lua">
 
<source lang="lua">

Revision as of 11:49, 5 February 2012

Available since LÖVE 0.8.0
This function is not supported in earlier versions.

Exits the LÖVE program.

Function

Synopsis

love.event.quit( )

Arguments

None.

Returns

Doesn't return.

Example

function love.keypressed(k)
   if k == 'escape' then
      love.event.quit()
   end
end

See Also


Other Languages