Files
secondo/Javagui/viewer/chess/MoveWatcher.java
2026-01-23 17:03:45 +08:00

12 lines
258 B
Java

package viewer.chess;
/**
* Interface which provides functionality to give an implementing class a GameData object
*/
public interface MoveWatcher
{
/**
* set the GameData object in the implementing class
*/
public void setCurrentGame(GameData g);
}