Advertisement
Guest User

App.java

a guest
Mar 10th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. package com;
  2.  
  3. public class App {
  4.     public static void main(String[] args) {
  5.         City city = new City(new Area(0, 0, 600, 600), 30, 70, 60, 100);
  6.         city.saveMap("map.png");
  7.        
  8.         System.out.println("Generation succed!");
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement