/*
 * Main.java
 *
 * Created on 27 de Janeiro de 2006, 14:47
 *
 * To change this template, choose Tools | Options and locate the template under
 * the Source Creation and Management node. Right-click the template and choose
 * Open. You can then make changes to the template in the Source Editor.
 */

package exemplodethreads;

/**
 *
 * @author Alexandre
 */
public class Main {
    
    /** Creates a new instance of Main */
    public Main() {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {       
        TelaJogo jogo = new TelaJogo();
        jogo.setVisible(true);
    }
}
