コード例 #1
0
ファイル: Ludo.cs プロジェクト: killerbonzai/LudoFixed
        public Ludo()
        {
            board = new LudoBoard();
            //setVisible(visual);
            // this is where Adam does some UI stuff. Like add a menu and add the board to the center of the window

            play();
        }
コード例 #2
0
 public RandomLudoPlayer(LudoBoard board)
 {
     this.board = board;
     rand       = new Random();
 }
コード例 #3
0
 public ManualLudoPlayer(LudoBoard board)
 {
     this.board = board;
 }
コード例 #4
0
 public FifoLudoPlayer(LudoBoard bord)
 {
     this.board = bord;
 }
コード例 #5
0
 public AggressiveLudoPlayer(LudoBoard board)
 {
     this.board = board;
     this.rand  = new Random();
 }
コード例 #6
0
 public SemiSmartLudoPlayer(LudoBoard board)
 {
     this.board = board;
     rand       = new Random();
 }