Added file structure and first gui implementation

main
Victor Hans-Georg Waitz 2024-06-02 15:40:15 +02:00
parent 6aaf1f55f0
commit d755970dd2
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package gui;
import javax.swing.JFrame;
public class Gui {
public static void main(String[] args) {
JFrame jf = new JFrame();
jf.setTitle("Travel Buddy");
jf.setSize(400, 300);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setVisible(true);
}
}