mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
Some things are temporary, like the load single image function that still has comments. I'll make a function like this to restore the original code (almost). I'll also pass the pathes as constants for the sake of maintainabilty and try to avoid some of the magic values in the code for the same purpose.
45 lines
1.3 KiB
C
45 lines
1.3 KiB
C
/* XPM */
|
|
static char * seven_xpm[] = {
|
|
"28 40 2 1",
|
|
" c #FF00DC",
|
|
". c #000001",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" .................... ",
|
|
" .................... ",
|
|
" .................... ",
|
|
" .................... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" .... ",
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" "};
|