(svn r3763) Adapt to the new 'map accessors go in foo_map.h'-scheme

This commit is contained in:
tron
2006-03-05 10:19:33 +00:00
parent 5913c3931b
commit cc4f5b4e6f
19 changed files with 18 additions and 18 deletions

13
void_map.h Normal file
View File

@@ -0,0 +1,13 @@
/* $Id$ */
static inline void MakeVoid(TileIndex t)
{
SetTileType(t, MP_VOID);
SetTileHeight(t, 0);
_m[t].m1 = 0;
_m[t].m2 = 0;
_m[t].m3 = 0;
_m[t].m4 = 0;
_m[t].m5 = 0;
_m[t].extra = 0;
}