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

/**
 * Stub for a GameModel class that is an application
 * of the Singleton design pattern.
 */
public class GameModel {
	
	private static final GameModel INSTANCE = new GameModel();
	
	private GameModel() {}
	
	public static GameModel instance() { 
		return INSTANCE; 
	}
}