parent
9894baa942
commit
76a7bfad70
@ -0,0 +1,13 @@
|
||||
|
||||
//新建一个棋子类ChessPosition保存每一步棋子所在的位置
|
||||
public class ChessPosition {
|
||||
public int Listi,Listj;
|
||||
|
||||
public ChessPosition() {
|
||||
|
||||
}
|
||||
public ChessPosition(int Listi,int Listj) {
|
||||
this.Listi=Listi;
|
||||
this.Listj=Listj;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue