代码拉取完成,页面将自动刷新
import java.awt.*;
public class Blood {
int x, y, w, h;
TankClient tc;
int step = 0;
private boolean live = true;
public boolean isLive() {
return live;
}
public void setLive(boolean live) {
this.live = live;
}
private int[][] pos = {
{350, 300}, {360, 300}, {370, 275},
{400, 200}, {360, 270}, {365, 290}, {350, 340}
};
public Blood() {
x = pos[0][0];
y = pos[0][1];
w = h = 15;
}
public void draw(Graphics g) {
if (!live) {
return;
}
Color c = g.getColor();
g.setColor(Color.MAGENTA);
g.fillRect(x, y, w, h);
g.setColor(c);
move();
}
private void move() {
step++;
if (step == pos.length) {
step = 0;
}
x = pos[step][0];
y = pos[step][1];
}
public Rectangle getRect() {
return new Rectangle(x, y, w, h);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。