mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-04-03 18:14:15 +00:00
8 lines
318 B
C
8 lines
318 B
C
#define move_width 16
|
|
#define move_height 16
|
|
#define move_x_hot 8
|
|
#define move_y_hot 8
|
|
static char move_bits[] = {
|
|
0xff, 0xff, 0xff, 0xfe, 0x7f, 0xfd, 0x7f, 0xfd, 0xbf, 0xfb, 0xbf, 0xfb,
|
|
0x4f, 0xe5, 0x33, 0x99, 0xfd, 0x7f, 0x33, 0x99, 0x4f, 0xe5, 0xbf, 0xfb,
|
|
0xbf, 0xfb, 0x7f, 0xfd, 0x7f, 0xfd, 0xff, 0xfe };
|