mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
6 lines
278 B
Text
6 lines
278 B
Text
#define bombm_width 16
|
|
#define bombm_height 16
|
|
static char bombm_bits[] = {
|
|
0x80, 0x3f, 0xe0, 0x7f, 0xe0, 0x7f, 0xf8, 0x7f, 0xfe, 0x7f, 0xfe, 0x6f,
|
|
0xff, 0x0f, 0xff, 0x1f, 0xff, 0x1f, 0xff, 0x1f, 0xff, 0x1f, 0xff, 0x1f,
|
|
0xff, 0x1f, 0xfe, 0x0f, 0xfe, 0x0f, 0xf8, 0x03};
|