package model; import view.GameView; public class GameModel { GameView view; public GameModel(GameView view) { this.view = view; } }