'Updated comment'

This commit is contained in:
Arkadiusz Hypki 2023-05-09 16:18:02 +02:00
parent 9a5cffb92c
commit f2ab9db116
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,11 @@ package net.hypki.wmi.oop.chess;
*
*/
public interface ChessInterface {
/**
*
* @param opponentMove - it is a simple from-to format (e.g. e2-e4)
* @return
*/
public String nextMove(String opponentMove);
public void printBoard();