赞
踩
游戏规则:抓取石块右键可以爆破、抓取金块右键快速抓取。
完成任务:窗体绘制、钩爪往返旋转、物体批量绘制、双缓存解决闪动问题、点和矩形碰撞检测、多种类物体随机生成、物体堆叠检测、多种类抓取速度判定、积分设置、关卡设置、重新开始、单关卡倒计时、金块的快速拉取、石块爆破、商店购物。
游戏大致界面:
-----------如需图片资源:可前往本人的资源下载里免费获取(戳此跳转)。
- import javax.swing.*;
-
- public class GameWin extends JFrame {
- void launch(){
- this.setVisible(true);
- this.setSize(500,500);
- this.setLocationRelativeTo(null);//屏幕中央出现窗口
- this.setTitle("黄金矿工");
- setDefaultCloseOperation(EXIT_ON_CLOSE);
- }
-
- public static void main(String[] args) {
- GameWin gameWin = new GameWin();
- gameWin.launch();
- }
- }</
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。