Add abstract method updateStatus to renderer
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user