Exemplo n.º 1
0
    public void AddPlayerPiece(int col, int row, Piece.MOVEMENT_TYPE moveType)
    {
        PlayerPiece pp = new PlayerPiece(col, row, moveType);

        playerPieces.Add(pp);
    }
Exemplo n.º 2
0
 public PlayerPiece(int c, int r, Piece.MOVEMENT_TYPE mt)
 {
     col         = c;
     row         = r;
     movementTye = mt;
 }