Chess - a framework for writing chess programs with Perl


Chess documentation Contained in the Chess distribution.

Index


Code Index:

NAME

Top

Chess - a framework for writing chess programs with Perl

SYNOPSIS

Top

use Chess;

$game = Chess::Game->new(); $board = $game->get_board(); ...

DESCRIPTION

Top

This package is provided as shorthand for Chess::Game. It provided no functionality not contained within the other packages in this module.

SEE ALSO

Top

Chess::Game
Chess::Board
Chess::Piece
Chess::Game::MoveList
Chess::Game::MoveListEntry

AUTHOR

Top

Brian Richardson <bjr@cpan.org>

COPYRIGHT

Top


Chess documentation Contained in the Chess distribution.

package Chess;

our $VERSION = '0.6.2';

use Chess::Game;

1;