#!/usr/bin/perl # # This file is part of Games::RailRoad. # Copyright (c) 2008 Jerome Quelin, all rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the same terms as Perl itself. # use strict; use warnings; # for testing purposes use FindBin qw[ $Bin ]; use lib "$Bin/../lib"; #/testing use Getopt::Euclid; use Games::RailRoad; use POE; Games::RailRoad->spawn; POE::Kernel->run; exit; __END__ =head1 NAME railsim - a railroad simulation =head1 USAGE $ railsim =head1 OPTIONS =over 4 =item --version =item --usage =item --help =item --man Print the usual program information. =back =head1 AUTHOR Jerome Quelin, C<< >> =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 same terms as Perl itself. =cut