You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
228 B
Plaintext

/*class*/// Dient zum Halten von Informationen über Spielfelder.
public class Field{
public int column;
public int row;
public Field parent;
public Field(int column, int row){
this.row = row;
this.column = column;
}
}