1
0
forked from 0ad/0ad
0ad/binaries/data/mods/official/gui/test/functions_global_init.js

16 lines
465 B
JavaScript
Raw Normal View History

/*
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();
}
// ====================================================================