refactor : Cell
Some checks failed
Linux arm64 / Build (push) Failing after 29s

This commit is contained in:
Melvyn
2025-02-02 15:52:10 +01:00
parent 2460b7539e
commit 8afd51b353
4 changed files with 98 additions and 44 deletions

View File

@@ -39,7 +39,7 @@ public class Block {
*
* @param newCell Cell, à ajouter
*/
void addCell(Cell newCell) {
public void addCell(Cell newCell) {
this.cells.add(newCell);
}