Package com.matis_digital.simulation

Source Code of com.matis_digital.simulation.Simulation

package com.matis_digital.simulation;

import com.matis_digital.simulation.gui.MainWindow;

public class Simulation
{
    public static void main(String[] args)
    {
        final MainWindow mainWindow = new MainWindow();
        mainWindow.loop = new Thread(mainWindow);
        mainWindow.loop.start();
    }
}
TOP

Related Classes of com.matis_digital.simulation.Simulation

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.