-The rest of the game engine. I screwed up the commit last time.

This commit is contained in:
Marshall
2012-03-31 14:18:08 -04:00
parent 2954041e89
commit 521fac6e08
45 changed files with 1006 additions and 0 deletions

21
src/model/Move.java Normal file
View File

@@ -0,0 +1,21 @@
package model;
import model.Board.TileColor;
public class Move {
private final TileColor color;
private final CellPointer cp;
public Move(CellPointer cllPntr, TileColor tlClr) {
cp = cllPntr;
color = tlClr;
}
public CellPointer getCell() {
return cp;
}
public TileColor getColor() {
return color;
}
}