parent
941e07407c
commit
a721578f24
@ -0,0 +1,38 @@
|
|||||||
|
package com.msb;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author bingor
|
||||||
|
* @Date 2022-09-29 21:53
|
||||||
|
* @Description: com.msb
|
||||||
|
* @Version: 1.0
|
||||||
|
*/
|
||||||
|
public class Tank {
|
||||||
|
|
||||||
|
private int x,y;
|
||||||
|
private DirEnum dir;
|
||||||
|
private static final int SPEED = 10;
|
||||||
|
|
||||||
|
public Tank(int x, int y, DirEnum dir) {
|
||||||
|
this.x = x;
|
||||||
|
this.y = y;
|
||||||
|
this.dir = dir;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void paint(Graphics g) {
|
||||||
|
g.fillRect(x, y, 50, 50);
|
||||||
|
|
||||||
|
switch (dir) {
|
||||||
|
case UP: y -= SPEED; break;
|
||||||
|
case DOWN: y += SPEED; break;
|
||||||
|
case LEFT: x -= SPEED; break;
|
||||||
|
case RIGHT: x += SPEED; break;
|
||||||
|
default: break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDir(DirEnum dir) {
|
||||||
|
this.dir = dir;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue