Games::Nintendo::Wii::Mii::Data::Mouth - Mii's moouth data


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

Index


Code Index:

NAME

Top

Games::Nintendo::Wii::Mii::Data::Mouth - Mii's moouth data

VERSION

Top

version 0.01

METHODS

Top

mouth_type

mouth_color

mouoth_size

mouth_vertical_position

AUTHOR

Top

Toru Yamaguchi, <zigorou@cpan.org>

BUGS

Top

Please report any bugs or feature requests to bug-games-nintendo-wii-mii-data-mouth@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::Mouth;

use strict;
use warnings;

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

use Readonly;

Readonly our @ACCESSORS => qw/
                                 mouth_type
                                 mouth_color
                                 mouth_size
                                 mouth_vertical_position
                             /;

__PACKAGE__->mk_accessors(@ACCESSORS);

our $VERSION = '0.01';

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