Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Location loc1 = new Location (20, 30, "Egypt");
  2. Location loc2 = new Location (5, 25, "Egypt");
  3. Location loc3 = new Location (10, 12, "Egypt");
  4. Location loc4 = new Location (6, 23, "Egypt");
  5. Location loc5 = new Location (7, 15, "Egypt");
  6. Location loc6 = new Location (4, 3, "Egypt");
  7.  
  8. IRiver source1 = new Source (loc1);
  9. IRiver source2 = new Source (loc2);
  10. IRiver source3 = new Source (loc5);
  11.  
  12. IRiver conf1 = new Confluence (loc1, source1, source2);
  13. IRiver conf2 = new Confluence (loc6, conf1, source3);
  14.  
  15. Mouth mouth1 = new Mouth (loc4, conf2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement