This commit is contained in:
2022-05-18 23:06:27 +08:00
parent 1357f94bfb
commit d0416b02bd
6 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/**
* Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007).
*/
public class Start {
public static void main(String args[]) {
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
new MyFrame();
}
});
}
}