#!/usr/bin/perl
#
# This file is part of Games-Risk
#
# This software is Copyright (c) 2008 by Jerome Quelin.
#
# This is free software, licensed under:
#
#   The GNU General Public License, Version 3, June 2007
#

package prisk;
BEGIN {
  $prisk::VERSION = '3.103040';
}
# ABSTRACT: classical Risk game written in perl

use strict;
use warnings;

use FindBin qw{ $Bin };
use lib "$Bin/../lib";

use POE qw{ Loop::Tk };
use Tk;

use Games::Risk;

Games::Risk->new;
POE::Kernel->run;
exit;



=pod

=head1 NAME

prisk - classical Risk game written in perl

=head1 VERSION

version 3.103040

=head1 DESCRIPTION

Risk is a strategic turn-based board game. Players control armies, with
which they attempt to capture territories from other players. The goal
of the game is to control all the territories (C<conquer the world>)
through the elimination of the other players. Using area movement, Risk
ignores realistic limitations, such as the vast size of the world, and
the logistics of long campaigns.

This distribution implements a graphical interface for this game.

=head1 SEE ALSO

L<Games::Risk>.

=head1 AUTHOR

Jerome Quelin, C<< <jquelin at cpan.org> >>

=head1 COPYRIGHT & LICENSE

Copyright (c) 2008 Jerome Quelin, all rights reserved.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU GPLv3+.

=head1 AUTHOR

  Jerome Quelin

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2008 by Jerome Quelin.

This is free software, licensed under:

  The GNU General Public License, Version 3, June 2007

=cut


__END__

