All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
#include <Mw/Milsko.h>
|
|
|
|
/**
|
|
* Created by bitmaptobdf
|
|
*
|
|
* Copyright notice:
|
|
* These ""glyphs"" are unencumbered
|
|
*/
|
|
MwCursor MwCursorArrow = {
|
|
14, 14, -13, -14, {3, /* ............## */
|
|
15, /* ..........#### */
|
|
62, /* ........#####. */
|
|
254, /* ......#######. */
|
|
1020, /* ....########.. */
|
|
4092, /* ..##########.. */
|
|
248, /* ......#####... */
|
|
504, /* .....######... */
|
|
944, /* ....###.##.... */
|
|
1840, /* ...###..##.... */
|
|
3616, /* ..###...#..... */
|
|
7200, /* .###....#..... */
|
|
14336, /* ###........... */
|
|
4096, /* .#............ */
|
|
0, 0}};
|
|
MwCursor MwCursorArrowMask = {
|
|
16, 16, -14, -15, {
|
|
7, /* .............### */
|
|
31, /* ...........##### */
|
|
127, /* .........####### */
|
|
510, /* .......########. */
|
|
2046, /* .....##########. */
|
|
8188, /* ...###########.. */
|
|
16380, /* ..############.. */
|
|
16376, /* ..###########... */
|
|
2040, /* .....########... */
|
|
4080, /* ....########.... */
|
|
8176, /* ...#########.... */
|
|
16096, /* ..#####.###..... */
|
|
31968, /* .#####..###..... */
|
|
63552, /* #####....#...... */
|
|
28672, /* .###............ */
|
|
8192 /* ..#............. */
|
|
}};
|