資源簡介
項目導入即可運行,包含以下元素
1.源碼
2.背景音樂
3.游戲分成四關,每關都有BOSS
代碼片段和文件信息
package?com.tarena.fly;
import?java.util.Random;
/**
?*?敵飛機:?是飛行物,也是敵人
?*/
public?class?Airplane?extends?Flyingobject?implements?Enemy?{
private?int?speed?=?1;??//移動步驟
/**?初始化數據?*/
public?Airplane(){
this.image?=?ShootGame.airplane;
width?=?image.getWidth();
height?=?image.getHeight();
y?=?-height;??????????
Random?rand?=?new?Random();
x?=?rand.nextInt(ShootGame.WIDTH?-?width);
}
/**?獲取分數?*/
@Override
public?int?getScore()?{??
return?5;
}
/**?//越界處理?*/
@Override
public? boolean?outOfBounds()?{???
return?y>ShootGame.HEIGHT;
}
/**?移動?*/
@Override
public?void?step()?{???
y?+=?speed;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-12-08?10:11??Shoot\
?????文件?????????651??2018-10-20?11:45??Shoot\.classpath
?????文件?????????364??2016-12-25?13:55??Shoot\.project
?????目錄???????????0??2018-12-08?10:11??Shoot\.settings\
?????文件?????????617??2016-12-25?13:55??Shoot\.settings\org.eclipse.jdt.core.prefs
?????目錄???????????0??2018-12-08?10:11??Shoot\bin\
?????目錄???????????0??2018-12-08?10:11??Shoot\bin\com\
?????目錄???????????0??2018-12-08?10:11??Shoot\bin\com\tarena\
?????目錄???????????0??2018-12-08?10:11??Shoot\bin\com\tarena\fly\
?????文件????????1054??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Airplane.class
?????文件?????????245??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Award.class
?????文件????????1187??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Bee.class
?????文件????????1191??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Bee2.class
?????文件????????1191??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Bee3.class
?????文件????????1038??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Boss.class
?????文件????????1042??2018-10-21?19:46??Shoot\bin\com\tarena\fly\Boss2.class
?????文件?????????729??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Bullet.class
?????文件?????????131??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Enemy.class
?????文件????????1649??2018-10-20?11:45??Shoot\bin\com\tarena\fly\Flyingob
?????文件????????2628??2018-10-21?20:21??Shoot\bin\com\tarena\fly\Hero.class
?????文件????????1085??2018-10-20?11:53??Shoot\bin\com\tarena\fly\Music.class
?????文件????????1832??2018-10-24?19:44??Shoot\bin\com\tarena\fly\ShootGame$1.class
?????文件????????1289??2018-10-24?19:44??Shoot\bin\com\tarena\fly\ShootGame$2.class
?????文件?????????898??2018-10-24?19:44??Shoot\bin\com\tarena\fly\ShootGame$3.class
?????文件???????13471??2018-10-24?19:44??Shoot\bin\com\tarena\fly\ShootGame.class
?????文件????????3575??2016-12-25?13:55??Shoot\bin\com\tarena\fly\airplane.png
?????文件???????26709??2016-12-25?13:55??Shoot\bin\com\tarena\fly\background.png
?????文件????????6405??2016-12-25?13:55??Shoot\bin\com\tarena\fly\bee.png
?????文件????????5361??2018-10-14?11:34??Shoot\bin\com\tarena\fly\bee2.png
?????文件????????6486??2018-10-14?11:39??Shoot\bin\com\tarena\fly\bee33.png
?????文件???????51203??2018-10-14?11:17??Shoot\bin\com\tarena\fly\boss.png
............此處省略58個文件信息
評論
共有 條評論