xxxxxxxxxx
35
//Adding variable for bow arrows and obstacles
var bow, arrow, balloon_b, balloon_g, balloon_r, balloon_p, edges;
//Adding variable for background
var backgroundImage;
function preload(){
//load your images here
balloons = loadImage("blue_balloon0.png", "green_balloon0.png", "pink_balloon0.png", "red_balloon0.png");
bow = loadImage("bow0.png");
arrow = loadImage("arrow");
}
function setup() {
createCanvas(600, 600);
//add code here
}
function draw() {
background = ("white");
//add code here
}