Files
secondo/Javagui/viewer/chess/MoveWatcher.java

12 lines
258 B
Java
Raw Normal View History

2026-01-23 17:03:45 +08:00
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);
}