File: Config.pm

package info (click to toggle)
frozen-bubble 2.212-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,852 kB
  • sloc: perl: 8,570; ansic: 1,200; sh: 92; makefile: 20
file content (10 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
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 = '/usr/share/games/frozen-bubble' ;
$FLPATH ='/usr/lib/games/frozen-bubble/fb-server';
1;