COMP2396
Loading...
Searching...
No Matches
T8Client.java
Go to the documentation of this file.
1import javax.swing.SwingUtilities;
2
3public class T8Client {
4
5 public static void main(String[] args) {
6 SwingUtilities.invokeLater(new Runnable() {
7 @Override
8 public void run() {
9 View view = new View();
10 Controller controller = new Controller(view);
11 controller.start();
12 }
13 });
14 }
15}
void start()
static void main(String[] args)
Definition T8Client.java:5
Definition View.java:18