• 大小: 0.80M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: Java
  • 标签: 游戏  射击  

资源简介


资源截图

代码片段和文件信息

package com.tarena.shoot;



/**
 * 敌飞机: 是飞行物,也是敌人
 */
public class Airplane extends Flyingobject implements Enemy {

int speed = 2;  //移动步骤

public Airplane(){
this.image = ShootGame.airplane;
this.ember = ShootGame.airplaneEmber;
width = image.getWidth();
height = image.getHeight();
y = -height;          
x = (int)(Math.random()*(ShootGame.WIDTH - width));
}


@Override
public int getScore() {  //获取分数
return 5;
}

@Override
public  boolean outOfBounds() {   //越界处理
return y>ShootGame.HEIGHT;
}

@Override
public void step() {   //移动
y += speed;
}

}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        301  2014-07-21 11:48  Shooter\.classpath

     文件        383  2014-07-25 15:41  Shooter\.project

     文件        629  2014-07-21 11:48  Shooter\.settings\org.eclipse.jdt.core.prefs

     文件       1096  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\Airplane.class

     文件       3575  2014-07-23 21:14  Shooter\bin\com\tarena\shoot\airplane.png

     文件       2619  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\airplane_ember0.png

     文件       2954  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\airplane_ember1.png

     文件       4047  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\airplane_ember2.png

     文件       1439  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\airplane_ember3.png

     文件        215  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\Award.class

     文件      26709  2014-07-22 19:42  Shooter\bin\com\tarena\shoot\background.png

     文件       1285  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\Bee.class

     文件       6405  2014-07-22 19:46  Shooter\bin\com\tarena\shoot\bee.png

     文件       6416  2014-07-30 17:39  Shooter\bin\com\tarena\shoot\bee_ember0.png

     文件       6428  2014-07-30 21:39  Shooter\bin\com\tarena\shoot\bee_ember1.png

     文件       6404  2014-07-30 21:39  Shooter\bin\com\tarena\shoot\bee_ember2.png

     文件       6367  2014-07-30 21:40  Shooter\bin\com\tarena\shoot\bee_ember3.png

     文件       1512  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\BigPlane.class

     文件       6762  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\bigplane.png

     文件       7932  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\bigplane_ember0.png

     文件       8682  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\bigplane_ember1.png

     文件       9831  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\bigplane_ember2.png

     文件       2672  2014-07-25 15:44  Shooter\bin\com\tarena\shoot\bigplane_ember3.png

     文件        929  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\Bullet.class

     文件        408  2014-07-17 10:00  Shooter\bin\com\tarena\shoot\bullet.png

     文件       1228  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\Ember.class

     文件        133  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\Enemy.class

     文件       1829  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\Flyingobject.class

     文件      20220  2014-07-23 21:17  Shooter\bin\com\tarena\shoot\gameover.png

     文件       2579  2015-02-06 16:48  Shooter\bin\com\tarena\shoot\Hero.class

............此处省略62个文件信息

评论

共有 条评论