1 /*
2  * SDLRoids - An Astroids clone.
3  *
4  * Copyright (c) 2000 David Hedbor <david@hedbor.org>
5  * 	based on xhyperoid by Russel Marks.
6  * 	xhyperoid is based on a Win16 game, Hyperoid by Edward Hutchins
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16  *
17  */
18 
19 /*
20  * roidsupp.h - support function prototypes
21  */
22 
23 
24 extern void PrintLetters( char *npszText, POINT Pos, POINT Vel,
25 			  BYTE byColor, int nSize );
26 extern void SpinLetters( char *npszText, POINT Pos, POINT Vel,
27 			 BYTE byColor, int nSize );
28 
29 extern POINT LetterPart[];
30 extern char *NumberDesc[],*LetterDesc[];
31 extern char *datafilename(char *, char *);
32