
Games::Nintendo::Wii::Mii - Mii in Nintendo Wii data parser and builder.

version 0.02

use Games::Nintendo::Wii::Mii;
my $mii = Games::Nintendo::Wii::Mii->new;
$mii->parse_from_file('zigorou.mii');
$mii->profile->name("ZIGOROU");
$mii->profile->creator_name("TORU");
$mii->save_to_file("new_zigorou.mii");
print $mii->to_xml();

Constructor.
Parse mii data from mii binary file.
Parse mii data from mii binary.
Parse mii data from mii binary hexdump.
Parse mii data from xml file.
Parse mii data from xml string.
Parse mii data from xml document object (See XML::LibXML::Document)
Save mii binary to file.
Save mii xml to file.
To binary data.
To hexdump.
To xml.
To online editable url powered by MiiEditor http://www.miieditor.com/
To online viewable url powered by MiiEditor http://www.miieditor.com/

Toru Yamaguchi, <zigorou@cpan.org>

Describe mii data format, see below.
http://wiibrew.org/index.php?title=Wiimote/Mii_Data
Online mii data editor created by flash and php.
http://www.miieditor.com/
This module use DTD and editor, viewer created by miieditor.com. Thanks a lot.

Please report any bugs or feature requests to bug-games-nintendo-wii-mii@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 2007 Toru Yamaguchi, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.