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

外挂编程

开发平台:

Windows_Unix

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