Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import bf052_map_mgc_swamp;
  2. Swamp;
  3.  
  4. void setup() {
  5. size(640, 360);
  6. background(255);
  7.  
  8. = new SoundFile(this, "sample.mp3");
  9. file.play();
  10. }
  11.  
  12. void draw() {
  13. size(1000,700);
  14. background(0,50,100);
  15. rect(100,500,230,180);
  16. rect(800,590,130,80);
  17. triangle(400,600,650,500,400,350);
  18. triangle(150,195,200,170,200,230);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement