//alex dahlgren 4/1/15 project 2 // peter the monster chases the hero alex for gold //Variables here //Tree variable void setup() { size(640,400); } void draw(){ scene(); sun(); tree(); bird(); peter(); alex(); gold(); } void scene(){ rectMode(CENTER); fill(138,232,73); rect(width/2,height,width,height+150); } void sun(){ } void tree(){ } void bird() { } void peter() { } void alex() { } void gold() { }