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 {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2021-02-16 15:06:50 +01:00
|
|
|
MainFrame frame = new MainFrame();
|
|
|
|
frame.setVisible(true);
|
2021-02-02 15:46:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|