mega changes -- transition to Python3
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package Visualizer;
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
public class StartScreen extends JPanel {
|
||||
|
||||
public StartScreen() {
|
||||
JLabel l = new JLabel();
|
||||
l.setText("Hello");
|
||||
l.setVisible(true);
|
||||
this.add(l);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user