-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDriver.java
More file actions
30 lines (26 loc) · 757 Bytes
/
Copy pathDriver.java
File metadata and controls
30 lines (26 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import view.TriviaMaze;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.UnsupportedAudioFileException;
import java.io.IOException;
/**
* The driver class for this demonstration code.
* @author David Hoang, Faith Capito.
* @version Fall 2023
*
*/
public final class Driver {
/**
* Private empty constructor to avoid accidental instantiation.
*/
private Driver() {
}
/**
* Creates a JFrame to demonstrate this panel.
*
* @param theArgs Command line arguments, ignored.
*/
public static void main(final String[] theArgs) throws UnsupportedAudioFileException,
LineUnavailableException, IOException {
final TriviaMaze game = new TriviaMaze();
}
}