예제 #1
0
 public Gem(GameBoard board, GemName name, Rectangle bounds, Point index)
 {
     this.board = board;
     this.name = name;
     this.bounds = bounds;
     this.index = index;
 }
예제 #2
0
 public InGame(GameMain main)
 {
     this.main = main;
     gameBoard = new GameBoard(this);
 }
예제 #3
0
 public NoMoreMovesChecker(GameBoard gameBoard)
 {
     this.gameBoard = gameBoard;
 }