| Games-Pandemic documentation | Contained in the Games-Pandemic distribution. |
Games::Pandemic::Role::OperationsExpert - operations expert pandemic role
version 1.111030
Jerome Quelin
This software is Copyright (c) 2009 by Jerome Quelin.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991
| 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::OperationsExpert; BEGIN { $Games::Pandemic::Role::OperationsExpert::VERSION = '1.111030'; } # ABSTRACT: operations expert pandemic role use Moose::Role; use Games::Pandemic::I18n qw{ T }; use Games::Pandemic::Utils; around can_build_anywhere => sub { 1 }; sub color { '#79af00' } sub role { T('Operations Expert') } sub _role { 'ops-expert' } no Moose::Role; # moose::role cannot be made immutable #__PACKAGE__->meta->make_immutable; 1;
__END__