public void runBitchRun()
{
int i=30;
int y=30;
while(true)
{
JFrame jframe = new JFrame();
jframe.setVisible(true);
jframe.setLocation(i,y);
i++;
y++;
}
}
↧
is JFrame alive? O.O
↧