-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDriver.java
More file actions
21 lines (19 loc) · 723 Bytes
/
Driver.java
File metadata and controls
21 lines (19 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;
/************************************************************************************************************
* Program Header -
* Names: John Tedesco, Steven Lum, Mehul Pillai
* Teacher: Mr.Cadawas
* Course: ISC4U1
* Date Of Completion: 1-17-2020
* Description: This program is a chess game made for the ISC4U1 CPT
**************************************************************************************************************/
// launch the program
public class Driver {
public static void main(String[] args) {
MainMenu.frame = new JFrame("Chess");
Utility.changePanel(new SplashScreen());
}
}