Loading src/edu/bu/ec504/spr19/sameGameTris/GUI.java→src/edu/bu/ec504/spr24/sameGameTris/GUI.java +10 −3 Original line number Diff line number Diff line package edu.bu.ec504.spr19.sameGameTris; package edu.bu.ec504.spr24.sameGameTris; import javax.swing.*; Loading @@ -7,10 +7,17 @@ import javax.swing.*; * It contains all the interfaces your Brain might need to make its moves. */ public abstract class GUI extends JFrame { /** * A number used for serialization. */ private static final long serialVersionUID = 1L; GUI(String s) { super(s); /** * @param title Creates a new GUI with the given title. */ GUI(String title) { super(title); } /* Loading Loading
src/edu/bu/ec504/spr19/sameGameTris/GUI.java→src/edu/bu/ec504/spr24/sameGameTris/GUI.java +10 −3 Original line number Diff line number Diff line package edu.bu.ec504.spr19.sameGameTris; package edu.bu.ec504.spr24.sameGameTris; import javax.swing.*; Loading @@ -7,10 +7,17 @@ import javax.swing.*; * It contains all the interfaces your Brain might need to make its moves. */ public abstract class GUI extends JFrame { /** * A number used for serialization. */ private static final long serialVersionUID = 1L; GUI(String s) { super(s); /** * @param title Creates a new GUI with the given title. */ GUI(String title) { super(title); } /* Loading