Games::Nintendo::Wii::Mii::Data::Eyebrow - The fantastic new Games::Nintendo::Wii::Mii::Data::Eyebrow!


Games-Nintendo-Wii-Mii documentation Contained in the Games-Nintendo-Wii-Mii distribution.

Index


Code Index:

NAME

Top

Games::Nintendo::Wii::Mii::Data::Eyebrow - The fantastic new Games::Nintendo::Wii::Mii::Data::Eyebrow!

VERSION

Top

version 0.01

METHODS

Top

new

eyebrow_type

eyebrow_rotation

eyebrow_color

eyebrow_size

eyebrow_vertical_position

eyebrow_horizon_spacing

AUTHOR

Top

Toru Yamaguchi, <zigorou@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-games-nintendo-wii-mii-data-eyebrow@rt.cpan.org, or through the web interface at http://rt.cpan.org. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

COPYRIGHT & LICENSE

Top


Games-Nintendo-Wii-Mii documentation Contained in the Games-Nintendo-Wii-Mii distribution.
package Games::Nintendo::Wii::Mii::Data::Eyebrow;

use strict;
use warnings;

use base qw(Class::Accessor::Fast);

use Readonly;

Readonly our @ACCESSORS => qw/
                                eyebrow_type
                                eyebrow_rotation
                                eyebrow_color
                                eyebrow_size
                                eyebrow_vertical_position
                                eyebrow_horizon_spacing
                            /;

__PACKAGE__->mk_accessors(@ACCESSORS);

our $VERSION = '0.01';

sub new {
    my ($class, $args) = @_;

    $args ||= {};

    $args->{eyebrow_type} ||= 5;
    $args->{eyebrow_rotation} ||= 4;
    $args->{eyebrow_color} ||= 3;
    $args->{eyebrow_size} ||= 4;
    $args->{eyebrow_vertical_position} ||= 5;
    $args->{eyebrow_horizon_spacing} ||= 4;

    my $self = $class->SUPER::new($args);

    return $self;
}

1; # End of Games::Nintendo::Wii::Mii::Data::Eyebrow