Skip to content
Snippets Groups Projects
Verified Commit f42903f2 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch 'master' of edugit.org:auglement/augmentile

parents a8bc782d deb81f8c
No related branches found
No related tags found
No related merge requests found
import * from phaser;
var scene = {
preload: preload,
create: create
};
var config = {
type: Phaser.AUTO,
width: 800,
height: 600,
scene: scene
};
var game = new Phaser.Game(config);
function preload ()
{
this.load.image('404', 'http://labs.phaser.io/assets/sprites/phaser3-logo.png')
}
function create ()
{
this.add.image(300, 400, '404')
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment