17 lines
301 B
Java
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();
|
|
|
|
}
|
|
|
|
}
|