Files
fooling-arround-in-java/ConnectFour/src/SwingWorkerValues.java
Simon 818786cfba Trying to animate the filling of the board.
This is just for educational purposes and at no means necessary for the game.
Yeah I'm pretty productive LOL
2020-07-27 00:52:42 +02:00

8 lines
174 B
Java

public class SwingWorkerValues {
public int row, column;
public SwingWorkerValues(int row, int column){
this.row = row;
this.column = column;
}
}