www.pudn.com > WuZiQi_src.rar > NetInfo.java


package game; 
 
/** 
 * 

Title: 五子棋

* *

Description: 五子棋游戏

* *

Copyright: Copyright (c) 2005

* *

Company: David Company

* * @author David * @version 1.0 */ public class NetInfo extends Object{ int x; int y; public NetInfo(int x,int y) { this.x=x; this.y=y; } public NetInfo(){ this.x=-1; this.y=-1; } public int getX() { return x; } public int getY() { return y; } public void setX(int x) { this.x=x; } public void setY(int y) { this.y=y; } }