From ac9e6fb34b96b5882955bc359cbe22603c995a51 Mon Sep 17 00:00:00 2001 From: dorian Date: Sat, 22 Feb 2020 10:43:55 +0100 Subject: [PATCH] added doc comment --- src/de/itsblue/ConnectFour/GameBoard.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/de/itsblue/ConnectFour/GameBoard.java b/src/de/itsblue/ConnectFour/GameBoard.java index baadbdb..1ec292e 100644 --- a/src/de/itsblue/ConnectFour/GameBoard.java +++ b/src/de/itsblue/ConnectFour/GameBoard.java @@ -66,7 +66,10 @@ public class GameBoard extends JPanel { } /** + * Constructor with custom rows and columns * + * @param rows number of columns the board sould have + * @param colums number of rows the board should have */ GameBoard(int rows, int colums) { this.boardRows = rows;