/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package choinka;

import javax.swing.JFrame;

/**
 *
 * @author romank
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        JFrame fr=new JFrame("Choinka");
        fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        fr.getContentPane().add(new Okno());
        fr.setSize(400, 400);
        fr.setVisible(true);
        // TODO code application logic here
    }

}
