src/void_map.h
author skidd13
Thu, 06 Dec 2007 18:29:31 +0000
changeset 8516 e7ce655f85ef
parent 6985 6fd300b20503
child 8604 8afdd9877afd
permissions -rw-r--r--
(svn r11580) -Feature: Memorise the resizing of the build bridge selection window during runtime
/* $Id$ */

/** @file void_map.h */

#ifndef VOID_MAP_H
#define VOID_MAP_H

/**
 * Make a nice void tile ;)
 * @param t the tile to make void
 */
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].m6 = 0;
	_me[t].m7 = 0;
}

#endif /* VOID_MAP_H */