Code viewer for World: Drop Bombs (clone by CA40...

// Cloned by CA400_tst1 on 19 May 2019 from World "Drop Bombs " by Alex Murphy 
// Please leave this clone trail here.
 
///////////////////// Tweakers Box ////////////////////////////////

let size = 100;
let background_image = 'uploads/alexmurphy1996/explosion.jpg';
let bomb_image = 'uploads/alexmurphy1996/bomb.png';

///////////////////////////////////////////////////////////////////


function preload() {
    img = loadImage(background_image);
    bomb = loadImage(bomb_image);
}


function setup() {
    $.getScript ( "uploads/alexmurphy1996/dropbomb_code.js", function() {
        setup();
        // Add code below //
        for(var i = 0; i<fullheight; i+=size){
            draw_image(i);
        }
        
    });
}