More Renderer stuff

This commit is contained in:
Dorian HAMDANI
2025-03-31 10:50:51 +02:00
parent 4d1481d634
commit 6e5e60cd36
4 changed files with 47 additions and 40 deletions

View File

@@ -5,8 +5,12 @@ public class ConsoleRenderer extends GomokuRenderer {
public ConsoleRenderer() {}
@Override
public void init() {}
public void init(GomokuGame game) {
System.out.println("Console Renderer initialized.");
}
@Override
public void update(GomokuGame game) {}
public void update() {
// TODO: draw the board
}
}