(svn r3664) Add a function to turn a tile into a void tile

This commit is contained in:
tron
2006-02-24 19:52:26 +00:00
parent ea59cc4a26
commit 6b7d4721bd
3 changed files with 12 additions and 8 deletions

6
void.h Normal file
View File

@@ -0,0 +1,6 @@
/* $Id$ */
static inline void MakeVoid(TileIndex t)
{
SetTileType(t, MP_VOID);
}