mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 22:49:29 -07:00
22 lines
285 B
Plaintext
22 lines
285 B
Plaintext
#define hook_width 16
|
|
#define hook_height 16
|
|
static char hook_bits[] = {
|
|
0xf0, 0x0f,
|
|
0x80, 0x01,
|
|
0x80, 0x01,
|
|
0x80, 0x01,
|
|
0xc0, 0x01,
|
|
0xe0, 0x01,
|
|
0x70, 0x00,
|
|
0x38, 0x0c,
|
|
0x18, 0x1c,
|
|
0x18, 0x38,
|
|
0x18, 0x30,
|
|
0x18, 0x30,
|
|
0x38, 0x38,
|
|
0x70, 0x1c,
|
|
0xe0, 0x0f,
|
|
0xc0, 0x07,
|
|
|
|
};
|