af9e3ced867d3ced5e8deca745e704b615d3c7fc
[winnie] / src / mouse_cursor.h
1 #ifndef MOUSE_CURSOR_H_
2 #define MOUSE_CURSOR_H_
3
4 const int mouse_cursor_width = 8;
5 const int mouse_cursor_height = 16;
6
7 const int mouse_cursor_bw[] = {
8         128, 128,   0,   0,   0,   0,   0,   0,
9         128, 255, 128,   0,   0,   0,   0,   0,
10         128, 255, 255, 128,   0,   0,   0,   0,
11         128, 255, 255, 255, 128,   0,   0,   0,
12         128, 255, 255, 255, 255, 128,   0,   0,
13         128, 255, 255, 255, 255, 255, 128,   0,
14         128, 255, 255, 255, 255, 255, 255, 128,
15         128, 255, 255, 255, 255, 255, 128,   0,
16         128, 255, 255, 255, 255, 128,   0,   0,
17         128, 255, 255, 255, 255, 128,   0,   0,
18         128, 255, 255, 255, 255, 255, 128,   0,
19         128, 255, 255, 255, 255, 255, 128,   0,
20         128, 255, 128, 128, 255, 255, 255, 128,
21         128, 128,   0, 128, 255, 255, 255, 128,
22         128,   0,   0,   0, 128, 255, 255, 128,
23           0,   0,   0,   0,   0, 128, 128, 128
24 };
25
26
27
28 #endif  // MOUSE_CURSOR_H_