diff options
author | belugas <belugas@openttd.org> | 2006-04-24 21:10:56 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2006-04-24 21:10:56 +0000 |
commit | 31c0641bd34036decfe50e363edfad0e1e71f060 (patch) | |
tree | d080bac8a9cda725440a23acb119e6257fe7731c /table/unmovable_land.h | |
parent | ca367408bb89eeaedd280b2fa0c440611b32e5ed (diff) | |
download | openttd-31c0641bd34036decfe50e363edfad0e1e71f060.tar.xz |
(svn r4568) CodeChange : Bring definitions and uses of DrawTypesStructures toguether.
Diffstat (limited to 'table/unmovable_land.h')
-rw-r--r-- | table/unmovable_land.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/table/unmovable_land.h b/table/unmovable_land.h index 15c226333..490c4564b 100644 --- a/table/unmovable_land.h +++ b/table/unmovable_land.h @@ -1,5 +1,15 @@ /* $Id$ */ +typedef struct DrawTileUnmovableStruct { + uint16 image; + byte subcoord_x; + byte subcoord_y; + byte width; + byte height; + byte z_size; + byte unused; +} DrawTileUnmovableStruct; + #define TILE_SEQ_END() { 0x80, 0, 0, 0, 0, 0, 0 } static const DrawTileUnmovableStruct _draw_tile_unmovable_data[] = { |