/**
 * Copyright (C) 2022 by Martin Robillard. See https://codesample.info/about.html
 */
package e2.chapter5;

/*
 * Dependency of the sample class under test GameModel.
 * Provided here just to make the code compile.
 */
public interface PlayingStrategy {
	Move computeNextMove(GameModelView pModel);
}