Allegro::Datafile - Allegro datafile routines
use Allegro;
$al = Allegro->new() or die; $data = $al->Datafile(file => "example.dat");
$bmp = $data->object("example1.bmp");
$pal = $data->object("example.pal");
The Allegro::Datafile module provides an object-oriented interface to the Allegro Datafile routines.
$data = $al->Datafile(file => $filename, password => $pass);
$bmp = $data->object("test.bmp");
$font = $data->object("main.fnt");
$samp = $data->object("fire.wav");
for ($data->names) {
print;
}
Colin O'Leary <colin@mx3.org>
Copyright 2003 by Colin O'Leary. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The Allegro library is copyright its authors, and is giftware. See http://alleg.sf.net for more information.