Missing files added
[sdlgit/SDL_perl.git] / lib / SDL / SFont.pm
CommitLineData
8fde61e3 1# SDL::OpenGL.pm
2#
3# SFont bitmat font support
4#
5# Copyright (C) 2004 David J. Goehrig
6
7package SDL::SFont;
8
9require Exporter;
10require DynaLoader;
11use vars qw(
12 @EXPORT
13 @ISA
14);
15@ISA=qw(Exporter DynaLoader);
16
17use SDL;
18
19BEGIN {
20
21};
22
23sub SDL_TEXTWIDTH {
24 return SDL::SFont::TextWidth(join('',@_));
25}
26
27
28bootstrap SDL::SFont;
29
301;
31
32__END__;
33
34=pod
35
36
37
38=head1 NAME
39
40SDL::SFont - a perl extension
41
42=head1 DESCRIPTION
43
44
45
46=head1 AUTHOR
47
48David J. Goehrig
49
50=head1 SEE ALSO
51
52L<perl> L<SDL::App>
53
54=cut