Exemplo n.º 1
0
 function __construct($xin, $yin, $board, $white)
 {
     parent::__construct($xin, $yin, $board);
     $this->setColor($white);
     if ($white) {
         $this->typecode = ChessBoard::$WHITEKING;
     } else {
         $this->typecode = ChessBoard::$BLACKKING;
     }
 }