parent
8dde80b7c7
commit
4aa722bb6e
@ -0,0 +1,14 @@
|
||||
package game;
|
||||
|
||||
//新建一个棋子类ChessPosition保存每一步棋子所在的位置
|
||||
public class position {
|
||||
public int Listi,Listj;
|
||||
|
||||
public position() {
|
||||
|
||||
}
|
||||
public position(int Listi, int Listj) {
|
||||
this.Listi=Listi;
|
||||
this.Listj=Listj;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue