Commit 0a36a8ee authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

Cleaning up.

parent c9b092e2
Loading
Loading
Loading
Loading
+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.*;

@@ -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