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

外挂编程

开发平台:

Windows_Unix

  1. #########################################################################
  2. #  OpenKore - Pet actor object
  3. #  Copyright (c) 2005 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. #  $Revision: 3869 $
  13. #  $Id: Player.pm 3869 2006-02-02 12:10:15Z hongli $
  14. #
  15. #########################################################################
  16. ##
  17. # MODULE DESCRIPTION: Pet actor object
  18. #
  19. # All members in %pets are of the Actor::Pet class.
  20. #
  21. # @MODULE(Actor) is the base class for this class.
  22. package Actor::Pet;
  23. use strict;
  24. use Actor;
  25. use base qw(Actor);
  26. sub new {
  27. my ($class) = @_;
  28. return $class->SUPER::new('Pet');
  29. }
  30. 1;