/**
* Copyright (C) 2022 by Martin Robillard. See https://codesample.info/about.html
*/
package e2.chapter5;
/*
* Dependencies of the sample class under test GameModel.
* Provided here just to make the code compile.
*/
public interface Move
{}
class NullMove implements Move
{}