NPC.pm
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:1k
- #########################################################################
- # OpenKore - NPC actor object
- # Copyright (c) 2005 OpenKore Team
- #
- # This software is open source, licensed under the GNU General Public
- # License, version 2.
- # Basically, this means that you're allowed to modify and distribute
- # this software. However, if you distribute modified versions, you MUST
- # also distribute the source code.
- # See http://www.gnu.org/licenses/gpl.html for the full license.
- #
- # $Revision: 3869 $
- # $Id: Player.pm 3869 2006-02-02 12:10:15Z hongli $
- #
- #########################################################################
- ##
- # MODULE DESCRIPTION: NPC actor object
- #
- # All members in %npcs are of the Actor::NPC class.
- #
- # @MODULE(Actor) is the base class for this class.
- package Actor::NPC;
- use strict;
- use Actor;
- use base qw(Actor);
- sub new {
- my ($class) = @_;
- return $class->SUPER::new('NPC');
- }
- 1;