mirror of
https://github.com/photonstorm/phaser
synced 2024-11-14 17:07:43 +00:00
14 lines
235 B
JavaScript
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() {
|
|
}
|