Difference between revisions of "love.load"

(Adds arg argument)
Line 3: Line 3:
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
love.load( )
+
love.load( arg )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
None.
+
{{param|table|arg|Command line arguments given to the game.}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.

Revision as of 08:41, 28 May 2011

This function is called exactly once at the beginning of the game.

Function

Synopsis

love.load( arg )

Arguments

table arg
Command line arguments given to the game.

Returns

Nothing.

See Also


Other Languages