# # 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. # package Games::RailRoad::Node::Half; use strict; use warnings; use base qw{ Games::RailRoad::Node }; # -- PRIVATE METHODS sub _next_map { return {}; } 1; __END__ =head1 NAME Games::RailRoad::Node::Half - a node object with one branch =head1 DESCRIPTION This package is a virtual class representing a node object with only one branch. Refer to C for a description of the various node types. =head1 SEE ALSO L. =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