Last change
on this file since 1254 was
193,
checked in by Maciej Komosinski, 11 years ago
|
Set svn:eol-style native for all textual files
|
-
Property svn:eol-style set to
native
|
File size:
987 bytes
|
Rev | Line | |
---|
[44] | 1 | package cecj.app.go; |
---|
| 2 | |
---|
| 3 | import java.util.List; |
---|
| 4 | |
---|
| 5 | import games.Board; |
---|
| 6 | import games.BoardGame; |
---|
| 7 | import games.GameMove; |
---|
| 8 | import games.Player; |
---|
| 9 | |
---|
| 10 | public class GoGame implements BoardGame { |
---|
| 11 | |
---|
| 12 | public GoGame(GoBoard board) { |
---|
| 13 | |
---|
| 14 | } |
---|
| 15 | |
---|
| 16 | public boolean endOfGame() { |
---|
| 17 | // TODO Auto-generated method stub |
---|
| 18 | return false; |
---|
| 19 | } |
---|
| 20 | |
---|
| 21 | public double evalMove(Player player, GameMove move) { |
---|
| 22 | // TODO Auto-generated method stub |
---|
| 23 | return 0; |
---|
| 24 | } |
---|
| 25 | |
---|
| 26 | public List<? extends GameMove> findMoves() { |
---|
| 27 | // TODO Auto-generated method stub |
---|
| 28 | return null; |
---|
| 29 | } |
---|
| 30 | |
---|
| 31 | public Board getBoard() { |
---|
| 32 | // TODO Auto-generated method stub |
---|
| 33 | return null; |
---|
| 34 | } |
---|
| 35 | |
---|
| 36 | public int getCurrentPlayer() { |
---|
| 37 | // TODO Auto-generated method stub |
---|
| 38 | return 0; |
---|
| 39 | } |
---|
| 40 | |
---|
| 41 | public int getOutcome() { |
---|
| 42 | // TODO Auto-generated method stub |
---|
| 43 | return 0; |
---|
| 44 | } |
---|
| 45 | |
---|
| 46 | public void makeMove(GameMove move) { |
---|
| 47 | // TODO Auto-generated method stub |
---|
| 48 | |
---|
| 49 | } |
---|
| 50 | |
---|
| 51 | public void reset() { |
---|
| 52 | // TODO Auto-generated method stub |
---|
| 53 | |
---|
| 54 | } |
---|
| 55 | |
---|
| 56 | public void switchPlayer() { |
---|
| 57 | // TODO Auto-generated method stub |
---|
| 58 | |
---|
| 59 | } |
---|
| 60 | |
---|
| 61 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.