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

/**
 * Stub class to represent a client of the Move class
 * hierarchy.
 */
public class GameModel
{
	public void push(Move pMove) {}
}