src/void_map.h
author rubidium
Wed, 29 Aug 2007 21:27:16 +0000
changeset 7984 c539c9368e3c
parent 6985 6fd300b20503
child 8604 8afdd9877afd
permissions -rw-r--r--
(svn r10999) -Codechange: unify the way the running cost of a vehicle is determined. Patch by nycom.
/* $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 */