Skip to content
Snippets Groups Projects
Commit e97316fb authored by Curtis James Moore's avatar Curtis James Moore
Browse files

Added my name and student number to app

parent ef568e38
No related branches found
No related tags found
No related merge requests found
...@@ -11,8 +11,7 @@ public class Main { ...@@ -11,8 +11,7 @@ public class Main {
JFrame mainWindow = new JFrame("Dots and Boxes"); JFrame mainWindow = new JFrame("Dots and Boxes");
DotsAndBoxesGrid grid = new DotsAndBoxesGrid(15, 8, 2); DotsAndBoxesGrid grid = new DotsAndBoxesGrid(15, 8, 2);
// FIXME: Update this label to show your name and student number JLabel label = new JLabel("Name: Curtis Moore 220263156");
JLabel label = new JLabel("Name: (Your name and student number goes here)");
JPanel borderPane = new JPanel(new BorderLayout()); JPanel borderPane = new JPanel(new BorderLayout());
borderPane.add(label, BorderLayout.SOUTH); borderPane.add(label, BorderLayout.SOUTH);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment