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

外挂编程

开发平台:

Windows_Unix

  1. #########################################################################
  2. #  OpenKore - Network subsystem
  3. #  Copyright (c) 2006 OpenKore Team
  4. #
  5. #  This software is open source, licensed under the GNU General Public
  6. #  License, version 2.
  7. #  Basically, this means that you're allowed to modify and distribute
  8. #  this software. However, if you distribute modified versions, you MUST
  9. #  also distribute the source code.
  10. #  See http://www.gnu.org/licenses/gpl.html for the full license.
  11. #########################################################################
  12. # New eAthena episode X.5
  13. # Servertype overview: http://www.openkore.com/wiki/index.php/ServerType
  14. package Network::Receive::ServerType9;
  15. use strict;
  16. use base qw(Network::Receive);
  17. sub new {
  18. my ($class) = @_;
  19. my $self = $class->SUPER::new;
  20. return $self;
  21. }
  22. 1;