
function init() {
}

function pre_init() {
}


function shutdown() {
}

function resize(newX, newY) {
}

window.onresize = function() {
	resize(window.innerWidth?window.innerWidth:document.body.clientWidth, window.innerHeight?window.innerHeight:document.body.clientHeight);
};

window.onload = function() {
	pre_init();
	resize(window.innerWidth?window.innerWidth:document.body.clientWidth, window.innerHeight?window.innerHeight:document.body.clientHeight);
	init();
}

