26 lines
498 B
C
26 lines
498 B
C
/* XPM */
|
|
static char *choice[] = {
|
|
/* width height num_colors chars_per_pixel */
|
|
" 16 16 2 1",
|
|
/* colors */
|
|
". c #000000",
|
|
"# c #fefefe",
|
|
/* pixels */
|
|
"################",
|
|
"################",
|
|
"################",
|
|
"################",
|
|
"#.............##",
|
|
"#.###########..#",
|
|
"#.#.....#####..#",
|
|
"#.##...######..#",
|
|
"#.###.#######..#",
|
|
"#.###########..#",
|
|
"#..............#",
|
|
"##.............#",
|
|
"################",
|
|
"################",
|
|
"################",
|
|
"################"
|
|
};
|