1 /*
2    credits.h
3 
4    For TuxMath
5    Contains the text of the credits display, as well
6    as the function which displays the credits in the game window.
7 
8    Copyright 2001, 2008, 2009, 2010
9 Authors: Bill Kendrick, David Bruce.
10 email: <tuxmath-devel@lists.sourceforge.net>
11 website: http://tux4kids.alioth.debian.org
12 
13 credits.h is part of "Tux, of Math Command", a.k.a. "tuxmath".
14 
15 Tuxmath is free software: you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 3 of the License, or
18 (at your option) any later version.
19 
20 Tuxmath is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 GNU General Public License for more details.
24 
25 You should have received a copy of the GNU General Public License
26 along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
27 
28 
29 
30 #ifndef CREDITS_H
31 #define CREDITS_H
32 
33 
34 int credits(void);
35 int scroll_text(char text[MAX_LINES][MAX_LINEWIDTH], SDL_Rect subscreen, int speed);
36 void draw_text(char* str, SDL_Rect dest);
37 #endif
38