public Gem(GameBoard board, GemName name, Rectangle bounds, Point index) { this.board = board; this.name = name; this.bounds = bounds; this.index = index; }
public InGame(GameMain main) { this.main = main; gameBoard = new GameBoard(this); }
public NoMoreMovesChecker(GameBoard gameBoard) { this.gameBoard = gameBoard; }