The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Games::FrozenBubble::Config;
use Config;
use File::ShareDir qw(dist_dir);
use File::Which;
use vars qw(@ISA @EXPORT $FPATH $FLPATH);
@ISA = qw(Exporter);
@EXPORT = qw($FPATH $FLPATH);
$FPATH = dist_dir('Games-FrozenBubble');
$FLPATH = File::Which::which('fb-server');
1;