ServerType16.pm
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:0k
源码类别:

外挂编程

开发平台:

Windows_Unix

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