lab 13
This commit is contained in:
14
lab/lab13/Question3/Start.java
Normal file
14
lab/lab13/Question3/Start.java
Normal file
@@ -0,0 +1,14 @@
|
||||
public class Start {
|
||||
public static void main(String[] args) {
|
||||
javax.swing.SwingUtilities.invokeLater(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
Model model = new Model();
|
||||
ControllerClicks c1 = new ControllerClicks(model);
|
||||
MyFrame frame = new MyFrame(model, c1);
|
||||
Controller c2 = new Controller(model);
|
||||
ViewNumber vn = new ViewNumber(model, c2);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user