Phaser.DOMSprite = function (game, element, x, y, style){ x = x || 0; y = y || 0; style = style || ''; this.game = game; this.exists = true ; this.alive = true ; this.group = null ; this.name = ''; this.type = Phaser.DOMSPRITE; this.visible = true ; } ;