File: Default.pm

package info (click to toggle)
libsdl-perl 2.548-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,972 kB
  • sloc: perl: 13,985; ansic: 583; makefile: 35
file content (20 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package SDLx::Music::Default;
use strict;
use warnings;

our $VERSION = 2.548;

sub ext  
{

	$_[0]->{ext} = $_[1] if $_[1];
	return $_[0]->{ext};
}

sub dir
{
	$_[0]->{dir} = $_[1] if $_[1];
	return $_[0]->{dir};
}

1;