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

// Cloned by CA400_tst1 on 6 May 2019 from World "Drop Bombs " by Alex Murphy 
// Please leave this clone trail here.
 
function preload() {
    img = loadImage('uploads/alexmurphy1996/explosion.jpg');
    bomb = loadImage('uploads/alexmurphy1996/bomb.png');
}


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