'use strict'
const Game = new Phaser.Game(1000, 500, Phaser.AUTO, 'game-canvas', { preload, create, update })
function preload() {
Game.load.image("background","img/opa.jpg")
}
function create() {
Game.add.sprite(180,35,"background")
}
function update() {
}