package com.Penguin; import com.util.GameUtil; import java.awt.*; //爆炸类 public class Explode { double x,y; static Image[] imgs=new Image[4]; static{ for (int i=0;i<3;i++){ imgs[i]= GameUtil.getImage("images/blast_"+(i+1)+".gif"); imgs[i].getWidth(null); } } int count; public void draw(Graphics g){ if(count<=3) { for(int i=0;i<5;i++) { g.drawImage(imgs[count], (int) x, (int) y, null); } count++; } } public Explode(double x,double y){ this.x=x; this.y=y; } }

wybdxjq LV1
2023年12月27日
dacfsdfaa LV1
2022年5月25日
ma小跳 LV5
2021年7月2日
asdffghhj LV1
2021年3月19日
happyzhu LV1
2020年12月17日
TerryGaoBo LV9
2020年8月26日
kkkxyh LV13
2020年8月23日
a105259 LV3
2020年5月9日
xueiqngquan LV1
2019年12月14日
aa123456awww LV8
2019年12月9日