author | smatz |
Thu, 17 Jul 2008 23:43:47 +0000 | |
changeset 9654 | 11fb7b19b64b |
parent 9111 | 48ce04029fe4 |
permissions | -rw-r--r-- |
2186 | 1 |
/* $Id$ */ |
2 |
||
9111
48ce04029fe4
(svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents:
5475
diff
changeset
|
3 |
/** @file clear_land.h Tables with sprites for clear land and fences. */ |
48ce04029fe4
(svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents:
5475
diff
changeset
|
4 |
|
0 | 5 |
static const SpriteID _landscape_clear_sprites[8] = { |
6 |
0xFA0, |
|
7 |
0xFB3, |
|
8 |
0xFB4, |
|
9 |
0xFB5, |
|
10 |
0xFB6, |
|
11 |
0xFA0, |
|
12 |
0xFB3, |
|
13 |
0xFB4, |
|
14 |
}; |
|
15 |
||
16 |
static const byte _fence_mod_by_tileh[32] = { |
|
4344
7e123fec5b0b
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents:
2548
diff
changeset
|
17 |
0, 2, 4, 0, 0, 2, 4, 0, |
7e123fec5b0b
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents:
2548
diff
changeset
|
18 |
0, 2, 4, 0, 0, 2, 4, 0, |
7e123fec5b0b
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents:
2548
diff
changeset
|
19 |
0, 2, 4, 0, 0, 2, 4, 4, |
7e123fec5b0b
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents:
2548
diff
changeset
|
20 |
0, 2, 4, 2, 0, 2, 4, 0, |
0 | 21 |
}; |
22 |
||
23 |
static const byte _fence_mod_by_tileh_2[32] = { |
|
4344
7e123fec5b0b
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents:
2548
diff
changeset
|
24 |
1, 1, 5, 5, 3, 3, 1, 1, |
7e123fec5b0b
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents:
2548
diff
changeset
|
25 |
1, 1, 5, 5, 3, 3, 1, 1, |
7e123fec5b0b
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents:
2548
diff
changeset
|
26 |
1, 1, 5, 5, 3, 3, 1, 5, |
7e123fec5b0b
(svn r6045) -Cleanup: align all table-like structures using spaces, i.e. whitespace fixes only except for a few comments to make them uniform for the whole enum/struct.
rubidium
parents:
2548
diff
changeset
|
27 |
1, 1, 5, 5, 3, 3, 3, 1, |
0 | 28 |
}; |
29 |
||
30 |
||
31 |
static const SpriteID _clear_land_fence_sprites_1[7] = { |
|
32 |
0xFFA, |
|
33 |
0x1000, |
|
34 |
0x1006, |
|
35 |
0x100C, |
|
36 |
0x1012, |
|
37 |
0x1018, |
|
38 |
}; |
|
39 |
||
40 |
static const SpriteID _clear_land_sprites_1[16] = { |
|
41 |
0x101E, |
|
42 |
0x1031, |
|
43 |
0x1044, |
|
44 |
0x1057, |
|
45 |
0x106A, |
|
46 |
0x107D, |
|
47 |
0x1090, |
|
48 |
0x10A3, |
|
49 |
0x10B6, |
|
50 |
}; |
|
51 |
||
52 |
static const SpriteID _clear_land_sprites_2[8] = { |
|
53 |
0x118D, |
|
54 |
0x11A0, |
|
55 |
0x11B3, |
|
56 |
0x11C6, |
|
57 |
}; |
|
58 |
||
59 |
static const SpriteID _clear_land_sprites_3[8] = { |
|
60 |
0x118D, |
|
61 |
0x11A0, |
|
62 |
0x11B3, |
|
63 |
0x11C6, |
|
64 |
}; |