22 lines
544 B
Java
22 lines
544 B
Java
|
// This file is part of MicropolisJ.
|
||
|
// Copyright (C) 2013 Jason Long
|
||
|
// Portions Copyright (C) 1989-2007 Electronic Arts Inc.
|
||
|
//
|
||
|
// MicropolisJ is free software; you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU GPLv3, with additional terms.
|
||
|
// See the README file, included in this distribution, for details.
|
||
|
|
||
|
package micropolisj;
|
||
|
|
||
|
import micropolisj.gui.MainWindow;
|
||
|
|
||
|
public class Main
|
||
|
{
|
||
|
public static void main(String [] args)
|
||
|
{
|
||
|
MainWindow win = new MainWindow();
|
||
|
win.setVisible(true);
|
||
|
win.doNewCity(true);
|
||
|
}
|
||
|
}
|