資源簡介
JAVA版飛機大戰代碼 根據微信小游戲改寫。。。。。。。
代碼片段和文件信息
package?com.tarena.shout;
import?java.util.Random;
//敵機類
public?class?Airplane?extends?Flyingobject?implements?Enemy?{
private?int?speed=2;//敵機走步的步數
public?Airplane(){
image=ShootGame.airplane;
width=image.getWidth();//獲取圖片的寬
heighet=image.getHeight();
Random?rand=new?Random();
x=rand.nextInt(ShootGame.WIDTH-this.width);//敵機的初始位置
y=-this.heighet;
}
//重寫getScore()
public?int?getScore(){
return?5;
}
//重寫step()
public?void?step()?{
y+=speed;
}
@Override
public?boolean?outOfBounds()?{
return?this.y>=ShootGame.HEIGHT;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-04-02?23:04??MyShout\
?????文件?????????301??2017-01-09?11:01??MyShout\.classpath
?????目錄???????????0??2018-04-10?00:22??__MACOSX\
?????目錄???????????0??2018-04-10?00:22??__MACOSX\MyShout\
?????文件?????????212??2017-01-09?11:01??__MACOSX\MyShout\._.classpath
?????文件????????6148??2018-04-02?23:04??MyShout\.DS_Store
?????文件?????????120??2018-04-02?23:04??__MACOSX\MyShout\._.DS_Store
?????文件?????????383??2017-01-09?11:01??MyShout\.project
?????文件?????????212??2017-01-09?11:01??__MACOSX\MyShout\._.project
?????目錄???????????0??2017-01-09?11:01??MyShout\.settings\
?????文件?????????598??2017-01-09?11:01??MyShout\.settings\org.eclipse.jdt.core.prefs
?????目錄???????????0??2018-04-10?00:22??__MACOSX\MyShout\.settings\
?????文件?????????212??2017-01-09?11:01??__MACOSX\MyShout\.settings\._org.eclipse.jdt.core.prefs
?????文件?????????212??2017-01-09?11:01??__MACOSX\MyShout\._.settings
?????目錄???????????0??2018-04-03?11:19??MyShout\bin\
?????目錄???????????0??2018-04-03?11:19??MyShout\bin\com\
?????目錄???????????0??2018-04-03?11:19??MyShout\bin\com\tarena\
?????目錄???????????0??2018-04-03?11:19??MyShout\bin\com\tarena\shout\
?????文件????????1065??2018-04-03?11:19??MyShout\bin\com\tarena\shout\Airplane.class
?????文件????????3575??2016-11-21?22:54??MyShout\bin\com\tarena\shout\airplane.png
?????文件?????????215??2018-04-03?11:19??MyShout\bin\com\tarena\shout\Award.class
?????文件???????26709??2016-11-21?22:54??MyShout\bin\com\tarena\shout\background.png
?????文件????????1202??2018-04-03?11:19??MyShout\bin\com\tarena\shout\Bee.class
?????文件????????6405??2016-11-21?22:54??MyShout\bin\com\tarena\shout\bee.png
?????文件????????1058??2018-04-03?11:19??MyShout\bin\com\tarena\shout\BigBee.class
?????文件????????3306??2017-01-11?14:59??MyShout\bin\com\tarena\shout\bigBee.png
?????文件?????????869??2018-04-03?11:19??MyShout\bin\com\tarena\shout\Bullet.class
?????文件?????????408??2016-11-21?22:54??MyShout\bin\com\tarena\shout\bullet.png
?????文件?????????133??2018-04-03?11:19??MyShout\bin\com\tarena\shout\Enemy.class
?????文件?????????893??2018-04-03?11:19??MyShout\bin\com\tarena\shout\Flyingob
?????文件???????20220??2016-11-21?22:54??MyShout\bin\com\tarena\shout\gameover.png
............此處省略60個文件信息
評論
共有 條評論