| Games-RailRoad documentation | Contained in the Games-RailRoad distribution. |
Games::RailRoad::Node::Temp - a node object not finished
version 1.101330
This package is a virtual class representing an unfinished node object - unfinished as in "there's clearly a branch missing".
Refer to Games::RailRoad::Node for a description of the various node types.
Jerome Quelin
This software is copyright (c) 2008 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Games-RailRoad documentation | Contained in the Games-RailRoad distribution. |
# # This file is part of Games-RailRoad # # This software is copyright (c) 2008 by Jerome Quelin. # # This is free software; you can redistribute it and/or modify it under # the same terms as the Perl 5 programming language system itself. # use 5.010; use strict; use warnings; package Games::RailRoad::Node::Temp; BEGIN { $Games::RailRoad::Node::Temp::VERSION = '1.101330'; } # ABSTRACT: a node object not finished use Moose; extends qw{ Games::RailRoad::Node }; __PACKAGE__->meta->make_immutable; 1;
__END__