//Monster stalks the hero, who hunts for gold ///SET UP: Define screen zise, set modes void setup() { size(500,500); background(200); } void draw(){ fill(200,150,90); rect(220,250,40,15); //drawing the dog body rect(210,240,15,10);//head fill(0); ellipse(215,245,2,2); //eye line(255,235,260,250); //tail line(220,265,215,275); //feet left line(225,265,215,275); line(255,265,252,275); line(258,265,252,275); }