get_release_info

Get information on the release of your P2 Engine using the get_release_info function.

Parameters: 
I/O Type Name Description
output float P2_Release release number
output float P2_Copyright copyright information
output string P2_Authors authors
 
Example: 
function write_release_information_to_screen()
        release,copyright,authors=get_release_info()
        io.write('\nVersion ',release)
        io.write('\nCopyright ',copyright)
        io.write('\nAuthors ',authors)
end
Class: 
Example files