comparison data/cursors/repair_cursor.xbm @ 378:71f5897ac5ef

Fences are now buildings, with appropriate (but ugly) UI changes.
author Jeremy Thurgood <firxen@gmail.com>
date Sat, 24 Oct 2009 19:08:54 +0000
parents
children
comparison
equal deleted inserted replaced
377:0dc9d17c689e 378:71f5897ac5ef
1 /*
2 * img_data = [
3 * "................",
4 * ".....###........",
5 * "....####........",
6 * "...#####........",
7 * "..#####.........",
8 * ".#######........",
9 * "######.##.......",
10 * ".###.#####......",
11 * "..#...##.##.....",
12 * ".......#####....",
13 * "........##.##...",
14 * ".........#####..",
15 * "..........##.##.",
16 * "...........#####",
17 * "............##.#",
18 * ".............##.",
19 * ]
20 */
21
22 #define repair_cursor_width 16
23 #define repair_cursor_height 16
24 #define repair_cursor_hot_x 4
25 #define repair_cursor_hot_y 4
26 static unsigned char repair_cursor_bits[] = {
27 0x00, 0x00, 0xe0, 0x00, 0xf0, 0x00, 0xf8, 0x00, 0x7c, 0x00, 0xfe, 0x00,
28 0xbf, 0x01, 0xee, 0x03, 0xc4, 0x06, 0x80, 0x0f, 0x00, 0x1b, 0x00, 0x3e,
29 0x00, 0x6c, 0x00, 0xf8, 0x00, 0xb0, 0x00, 0x60 };