mirror of
https://github.com/wassname/phaser.git
synced 2026-07-01 16:50:43 +08:00
11 lines
169 B
JavaScript
11 lines
169 B
JavaScript
(function() {
|
|
var game = new Phaser.Game(this, 'game', 800, 600, init, create);
|
|
|
|
function init() {
|
|
// body...
|
|
}
|
|
function create() {
|
|
|
|
}
|
|
})();
|