aboutsummaryrefslogtreecommitdiffstats
path: root/src/platformer.js
blob: 3d19130343f1c338b6f998e2a51603535226d98c (plain)
1
2
3
4
5
6
7
8
9
document.body.appendChild(Engine.instance.renderer.view);

requestAnimationFrame(animate);

function animate() {
	requestAnimationFrame(animate);

	Engine.instance.update();
}