Games::Pandemic::Role::Medic - medic pandemic role


Games-Pandemic documentation Contained in the Games-Pandemic distribution.

Index


Code Index:

NAME

Top

Games::Pandemic::Role::Medic - medic pandemic role

VERSION

Top

version 1.111030

AUTHOR

Top

Jerome Quelin

COPYRIGHT AND LICENSE

Top


Games-Pandemic documentation Contained in the Games-Pandemic distribution.

#
# This file is part of Games-Pandemic
#
# This software is Copyright (c) 2009 by Jerome Quelin.
#
# This is free software, licensed under:
#
#   The GNU General Public License, Version 2, June 1991
#
use 5.010;
use strict;
use warnings;

package Games::Pandemic::Role::Medic;
BEGIN {
  $Games::Pandemic::Role::Medic::VERSION = '1.111030';
}
# ABSTRACT: medic pandemic role

use Moose::Role;
use Games::Pandemic::I18n      qw{ T };
use Games::Pandemic::Utils;


around auto_clean_on_cure => sub { 1 };
around treat_all          => sub { 1 };
sub color { '#e48006'  }
sub role  { T('Medic') }
sub _role { 'medic'    }


no Moose::Role;
# moose::role cannot be made immutable
#__PACKAGE__->meta->make_immutable;

1;



__END__