phaser/examples/wip/gc1.js
2013-11-17 12:31:57 +00:00

14 lines
235 B
JavaScript

var game = new Phaser.Game(800, 600, Phaser.CANVAS, 'phaser-example', { preload: preload, create: create, update: update, render: render });
function preload() {
}
function create() {
}
function update() {
}
function render() {
}