/**
* Copyright (C) 2022 by Martin Robillard. See https://codesample.info/about.html
*/
package e2.chapter7;
/**
* Represents a move in a game of Solitaire
*/
public interface Move {
/**
* Performs the move.
*/
void perform();
/**
* Undoes (reverses) the move.
*/
void undo();
}