init commit
This commit is contained in:
parent
d7e66da0bd
commit
74ef472dd4
83 changed files with 800 additions and 0 deletions
15
GameRunner.java
Normal file
15
GameRunner.java
Normal 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();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue