Add abstract method updateStatus to renderer

This commit is contained in:
Dorian HAMDANI
2025-04-07 10:15:24 +02:00
parent c6aae89834
commit 23dec92e66
3 changed files with 8 additions and 0 deletions

View File

@@ -45,4 +45,10 @@ public class ConsoleRenderer extends GomokuRenderer {
sb.append("+");
return sb.toString();
}
@Override
public void updateStatus(String status) {
// Print the status to the console
System.out.println("Status: " + status);
}
}