代码搜索:TankClient
找到约 551 项符合「TankClient」的源代码
代码结果 551
www.eeworm.com/read/494566/6377563
java explode.java
import java.awt.*;
public class Explode {
int x,y;
private boolean live=true;
int[] diameter={4,7,12,18,26,32,49,30,14,6};
int step=0;
private TankClient tc;
public Exp
www.eeworm.com/read/494566/6377564
java wall.java
import java.awt.*;
public class Wall {
int x,y,w,h;
TankClient tc;
public Wall(int x, int y, int w, int h, TankClient tc) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
www.eeworm.com/read/479791/6678971
java explode.java
import java.awt.Color;
import java.awt.Graphics;
/**
* 代表爆炸的类
* 使用大小不一的圆进行模拟
* @author mashibing
*
*/
public class Explode {
int x, y;
private int[] diameters = { 4, 7, 12, 18, 26
www.eeworm.com/read/479791/6678973
java missile.java
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Rectangle;
import java.util.List;
/**
* 代表子弹的类
* @author mashibing
*
*/
public class Missile {
/**
* 子弹x方向的速度
*/
www.eeworm.com/read/337184/12386151
java wall.java
import java.awt.*;
public class Wall {
int x, y, w, h;
TankClient tc;
public Wall(int x, int y, int w, int h, TankClient tc)
{
this.h = h;
this.tc = tc;
this.w = w;
this.x = x;
www.eeworm.com/read/474609/6813950
java explode.java
import java.awt.*;
public class Explode {
int x, y;
private boolean live = true;
private TankClient tc;
int[] diameter = {4,8,12,16,20,15,10,7};
int step = 0;
public Explode(in
www.eeworm.com/read/367015/9785834
java zid.java
package tank;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.util.List;
import java.util.Random;
import javax.swing.JOption
www.eeworm.com/read/388368/8612658
java wall.java
import java.awt.*;
public class Wall {
public Wall( int x, int y, int w, int h, TankClient tc) {
this.h = h;
this.tc = tc;
this.w = w;
this.x = x;
this.y = y;
}
int x, y