推箱子GameFrame
蒙华翰
2023-12-01
import javax.swing.JFrame;
public class GameFrame extends JFrame {
GamePanel gp;//属性;
//构造方法;
public GameFrame(){
this.setSize(500,500);//窗口大小,500像素;
this.setTitle("推箱子");//窗口标题;
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//实现关闭
gp=new GamePanel();//创建一块新画板
this.add(gp);
this.setVisible(true);//显示
}
}