init commit

This commit is contained in:
bMorgan17 2019-08-08 10:06:28 -05:00
parent d7e66da0bd
commit 74ef472dd4
83 changed files with 800 additions and 0 deletions

15
GameRunner.java Normal file
View file

@ -0,0 +1,15 @@
import javax.swing.*;
public class GameRunner {
public static int player1Won = 0, player2Won = 0;
public static void main(String args[]) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new GridDialog();
}
});
}
}