Fixed the pod path in archive
[sdlgit/SDL_perl.git] / lib / pods / SDL / Timer.pod
CommitLineData
896b04ee 1=pod
2
3
4=head1 NAME
5
6SDL::Timer - a SDL perl extension to handle timers
7
8=head1 SYNOPSIS
9
10 $timer = new SDL::Timer { print "tick"; 4000; } -delay => 4000;
11
12=head1 DESCRIPTION
13
14C<SDL::Timer> provides an abstract interface to the SDL::Timer
15callback code. SDL::Timer::new requires a subroutine and a delay
16at which is the initial interval between the creation of the
17timer until the first call to the subroutine. The subroutine
18must return a value which is the delay until the it is called again.
19
20=head1 AUTHOR
21
22David J. Goehrig
23
24=head1 SEE ALSO
25
26L<perl> L<SDL>
27
28=pod