- # euRO (Europe) as of December 20 2006
- # Servertype overview: http://www.openkore.com/wiki/index.php/ServerType
- package Network::Receive::ServerType16;
- use strict;
- use Network::Receive::ServerType11;
- use base qw(Network::Receive::ServerType11);
- sub new {
- my ($class) = @_;
- my $self = $class->SUPER::new;
- return $self;
- }
- 1;