Initial revision

This commit is contained in:
William Kendrick 2003-02-24 01:46:52 +00:00
commit 365fe3e5b6
350 changed files with 43559 additions and 0 deletions

42
src/tip_tux.h Normal file
View file

@ -0,0 +1,42 @@
/*
tip_tux.h
For Tux Paint
List of tux images for tips.
Copyright (c) 2002 by Bill Kendrick
bill@newbreedsoftware.com
http://www.newbreedsoftware.com/tuxpaint/
June 17, 2002 - June 27, 2002
*/
#ifndef TIP_TUX_H
#define TIP_TUX_H
/* What tuxes are available: */
enum {
TUX_DEFAULT,
TUX_KISS,
TUX_BORED,
TUX_GREAT,
TUX_OOPS,
TUX_WAIT,
NUM_TIP_TUX
};
/* Tux filenames: */
char * tux_img_fnames[NUM_TIP_TUX] = {
DATA_PREFIX "images/tux/default.png",
DATA_PREFIX "images/tux/kiss.png",
DATA_PREFIX "images/tux/bored.png",
DATA_PREFIX "images/tux/great.png",
DATA_PREFIX "images/tux/oops.png",
DATA_PREFIX "images/tux/wait.png"
};
#endif /* TIP_TUX_H */