2021-02-02 15:46:38 +01:00
|
|
|
package lsystem;
|
|
|
|
|
2021-03-03 13:23:22 +01:00
|
|
|
import lsystem.screen.gl3d.GLCanvas;
|
|
|
|
import lsystem.screen.main.MainFrame;
|
2021-02-02 15:46:38 +01:00
|
|
|
|
|
|
|
public class Main {
|
|
|
|
|
2021-03-09 20:13:58 +01:00
|
|
|
public static MainFrame mainFrame;
|
|
|
|
public static GLCanvas joglFrame;
|
|
|
|
|
2021-02-02 15:46:38 +01:00
|
|
|
public static void main(String[] args) {
|
2021-03-09 20:13:58 +01:00
|
|
|
new Thread(() -> {
|
|
|
|
mainFrame = new MainFrame();
|
|
|
|
mainFrame.setVisible(true);
|
|
|
|
}).start();
|
|
|
|
new Thread(() -> joglFrame = new GLCanvas()).start();
|
2021-02-02 15:46:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|