俄罗斯方块java
块");
setSize(240,400);
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
Container contentPane=getContentPane();
contentPane.add(new eluosiPanel());
}
}
public class eluosi
{
public static void main(String[] args)
{
JFrame myEluosi=new eluosiFrame();
myEluosi.show();
}
}