This repository has been archived on 2021-09-15 . You can view files and clone it, but cannot push or open issues or pull requests.
22 lines
347 B
C
22 lines
347 B
C
/* XPM */
|
|||
static char *openfile[] = {
|
|||
/* width height num_colors chars_per_pixel */
|
|||
" 10 9 5 1",
|
|||
/* colors */
|
|||
". c None",
|
|||
"# c #000000",
|
|||
"y c #666666",
|
|||
"i c #ff1f00",
|
|||
"# c #9f9f9f",
|
|||
/* pixels */
|
|||
"..........",
|
|||
"........yy",
|
|||
".......yy.",
|
|||
"......yy..",
|
|||
".yyy.yy...",
|
|||
"..yyyy....",
|
|||
"...yy.....",
|
|||
"..........",
|
|||
"..........",
|
|||
};
|