Games::RailRoad::Node::Cross - a node object with 4 branches


Games-RailRoad documentation Contained in the Games-RailRoad distribution.

Index


Code Index:

NAME

Top

Games::RailRoad::Node::Cross - a node object with 4 branches

VERSION

Top

version 1.101330

DESCRIPTION

Top

This package is a virtual class representing a node object with four branches. This corresponds to 2 straight lines crossing each-other.

Refer to Games::RailRoad::Node for a description of the various node types.

AUTHOR

Top

  Jerome Quelin

COPYRIGHT AND LICENSE

Top


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::Cross;
BEGIN {
  $Games::RailRoad::Node::Cross::VERSION = '1.101330';
}
# ABSTRACT: a node object with 4 branches

use Moose;
extends qw{ Games::RailRoad::Node };

__PACKAGE__->meta->make_immutable;
1;



__END__