diff --git a/sidescroller/MortalWombat/public_html/index.html b/sidescroller/MortalWombat/public_html/index.html new file mode 100644 index 0000000..8c1c714 --- /dev/null +++ b/sidescroller/MortalWombat/public_html/index.html @@ -0,0 +1,10 @@ + + + + + Mortal Wombat + + + + + diff --git a/sidescroller/MortalWombat/public_html/mortalwombat.js b/sidescroller/MortalWombat/public_html/mortalwombat.js new file mode 100644 index 0000000..8a3b0eb --- /dev/null +++ b/sidescroller/MortalWombat/public_html/mortalwombat.js @@ -0,0 +1,18 @@ +const config = { + type: PHASER.AUTO, + width: 800, + height: 600, + physics: { + default: 'arcade', + arcade: { + gravity: {y: 500}, + debug: false + } + }, + scene: { + key: 'main', + preload: preload, + create: create, + update: update + } +}; \ No newline at end of file