You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package game;
|
|
|
|
//新建一个棋子类ChessPosition保存每一步棋子所在的位置
|
|
public class position {
|
|
public int Listi,Listj;
|
|
|
|
public position() {
|
|
|
|
}
|
|
public position(int Listi, int Listj) {
|
|
this.Listi=Listi;
|
|
this.Listj=Listj;
|
|
}
|
|
}
|