1
0
forked from 0ad/0ad
0ad/binaries/data/mods/public/gui/test/functions_global_init.js
2009-07-16 10:20:51 +00:00

16 lines
450 B
JavaScript

/*
DESCRIPTION : Global initialisation functions, called when scripts first included at startup.
NOTES : Use for any initialisation that cannot be mapped to an object.
*/
// ====================================================================
function init ()
{
// Root point for anything that needs to be globally initialised at startup.
initCoord();
initSession();
}
// ====================================================================