Monster.pm
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:1k
- #########################################################################
- # OpenKore - Monster 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: 4710 $
- # $Id: Monster.pm 4710 2006-07-08 12:01:48Z hongli $
- #
- #########################################################################
- ##
- # MODULE DESCRIPTION: Monsters actor object
- #
- # All members in %monsters are of the Actor::Monster class.
- #
- # Actor.pm is the base class for this class.
- package Actor::Monster;
- use strict;
- our @ISA = qw(Actor);
- sub new {
- my ($class) = @_;
- return $class->SUPER::new('Monster');
- }
- 1;