mirror of
https://github.com/NishiOwO/chimera.git
synced 2025-04-21 08:34:39 +00:00
7 lines
284 B
C
7 lines
284 B
C
#define NoImage_width 16
|
|
#define NoImage_height 16
|
|
static char NoImage_bits[] = {
|
|
0x01, 0x80, 0x02, 0x40, 0x04, 0x20, 0x08, 0x10, 0x10, 0x08, 0x20, 0x04,
|
|
0x40, 0x02, 0x80, 0x01, 0x80, 0x01, 0x40, 0x02, 0x20, 0x04, 0x10, 0x08,
|
|
0x08, 0x10, 0x04, 0x20, 0x02, 0x40, 0x01, 0x80};
|