| Games-Pandemic documentation | Contained in the Games-Pandemic distribution. |
Games::Pandemic::Role::Dispatcher - dispatcher 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::Dispatcher; BEGIN { $Games::Pandemic::Role::Dispatcher::VERSION = '1.111030'; } # ABSTRACT: dispatcher pandemic role use Moose::Role; use Games::Pandemic::I18n qw{ T }; use Games::Pandemic::Utils; around can_join_others => sub { 1 }; around can_move_others => sub { 1 }; sub color { '#af4377' } sub role { T('Dispatcher') } sub _role { 'dispatcher' } no Moose::Role; # moose::role cannot be made immutable #__PACKAGE__->meta->make_immutable; 1;
__END__