34 lines
856 B
C
34 lines
856 B
C
/* XPM */
|
|
static char * dog_112_xpm[] = {
|
|
/* width height ncolors chars_per_pixel */
|
|
"24 24 3 1",
|
|
/* colors */
|
|
" s None c None",
|
|
". s Dark brown c sienna",
|
|
"X c green",
|
|
/* pixels */
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" . . ",
|
|
". . ... ",
|
|
"....X....... ",
|
|
" .............. ",
|
|
"....................... ",
|
|
" ............... ..",
|
|
" .............. .",
|
|
" ..... ...... .",
|
|
" ..... ..... .",
|
|
" .. .. ..... ",
|
|
" .. .. .. .. ",
|
|
" .. .. ... .. ",
|
|
" .. .. ... ... "};
|