L-System/src/lsystem/Main.java
2021-03-01 12:41:47 +01:00

17 lines
301 B
Java

package lsystem;
import lsystem.screen.MainFrame;
import lsystem.screen.SwingGLCanvas;
public class Main {
public static void main(String[] args) {
MainFrame frame = new MainFrame();
frame.setVisible(true);
SwingGLCanvas canvas = new SwingGLCanvas();
}
}