1 /*
2   tip_tux.h
3 
4   For Tux Paint
5   List of tux images for tips.
6 
7   Copyright (c) 2002 by Bill Kendrick
8   bill@newbreedsoftware.com
9   http://www.newbreedsoftware.com/tuxpaint/
10 
11   This program is free software; you can redistribute it and/or modify
12   it under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15 
16   This program is distributed in the hope that it will be useful,
17   but WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19   GNU General Public License for more details.
20 
21   You should have received a copy of the GNU General Public License
22   along with this program; if not, write to the Free Software
23   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24   (See COPYING.txt)
25 
26   June 17, 2002 - June 27, 2002
27   $Id$
28 */
29 
30 
31 #ifndef TIP_TUX_H
32 #define TIP_TUX_H
33 
34 /* What tuxes are available: */
35 
36 enum
37 {
38   TUX_DEFAULT,
39   TUX_KISS,
40   TUX_BORED,
41   TUX_GREAT,
42   TUX_OOPS,
43   TUX_WAIT,
44   NUM_TIP_TUX
45 };
46 
47 
48 /* Tux filenames: */
49 
50 const char *const tux_img_fnames[NUM_TIP_TUX] = {
51   DATA_PREFIX "images/tux/default.png",
52   DATA_PREFIX "images/tux/kiss.png",
53   DATA_PREFIX "images/tux/bored.png",
54   DATA_PREFIX "images/tux/great.png",
55   DATA_PREFIX "images/tux/oops.png",
56   DATA_PREFIX "images/tux/wait.png"
57 };
58 
59 #endif /* TIP_TUX_H */
60