Guest User

Untitled

a guest
Mar 22nd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. outside outside;
  2. tree tree;
  3. apple apple;
  4. //fall applefall;
  5. void setup() {
  6.  
  7. outside = new outside();
  8. tree = new tree();
  9. apple = new apple();
  10. // fall = new fall();
  11.  
  12.  
  13. size(700,750);
  14. background(100,100,255);
  15. }
  16.  
  17. void draw() {
  18. outside.drawoutside();
  19. tree.drawtree();
  20. apple.drawapple();
  21. // applefall.applefall();
  22. }
Add Comment
Please, Sign In to add comment