精选优质文档-倾情为你奉上有些图片路径会出错 要注意package com.tankgame;import java.util.Vector;/坦克类class Tank int x=0; int y=0; int color=0; int speed=1; int direct=0; boolean isLive=true; public Tank(int x,int y) this.x=x; this.y=y; public int getX() return x;public void setX(int x) this.x = x;public int getY() return y;public void setY(int y) this.y = y;public int getDirect() return di