The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Games::SolarConflict::Roles::Player;
{
  $Games::SolarConflict::Roles::Player::VERSION = '0.000001';
}

# ABSTRACT: Player role

use strict;
use warnings;
use Mouse::Role;

has spaceship => (
    is       => 'ro',
    isa      => 'Games::SolarConflict::Spaceship',
    required => 1,
);

no Mouse::Role;

1;



=pod

=head1 NAME

Games::SolarConflict::Roles::Player - Player role

=head1 VERSION

version 0.000001

=head1 SEE ALSO

=over 4

=item * L<Games::SolarConflict>

=back

=head1 AUTHOR

Jeffrey T. Palmer <jtpalmer@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2012 by Jeffrey T. Palmer.

This is free software, licensed under:

  The MIT (X11) License

=cut


__END__