Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import javax.swing.UIManager;
- public class Main {
- public static void main(String[] args) {
- try {
- UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
- } catch (Exception e) {
- throw new RuntimeException(e);
- }
- View interfata = new View();
- new Controller(interfata);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement