This is just for educational purposes and at no means necessary for the game. Yeah I'm pretty productive LOL
8 lines
174 B
Java
8 lines
174 B
Java
public class SwingWorkerValues {
|
|
public int row, column;
|
|
public SwingWorkerValues(int row, int column){
|
|
this.row = row;
|
|
this.column = column;
|
|
}
|
|
}
|