Initial Commit

This commit is contained in:
Victor Giers
2019-11-19 11:09:22 +01:00
parent 3b8589a917
commit 746e9b4a92
59 changed files with 29837 additions and 0 deletions

19
sketch.js Normal file
View File

@@ -0,0 +1,19 @@
var bg_image;
function preload(){
bg_image = loadImage('img/map.png');
}
function setup() {
//createCanvas(windowWidth,windowHeight);
}
function draw() {
background(52,60,78);
image(bg_image, 0,0, width, height);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}