src/void_map.h
author miham
Sat, 06 Jan 2007 14:29:07 +0000
changeset 5548 30ef59fddf5d
parent 5475 2e6990a8c7c4
child 5596 5bf7128140a0
permissions -rw-r--r--
(svn r7905) WebTranslator2 update to 2007-01-06 15:28:31
estonian - 5 changed by kristjans (5)
frisian - 669 fixed, 17 changed by ikkejw (574), Bouke (2), talzaroff (110)
italian - 1 changed by sidew (1)
turkish - 2 fixed, 16 changed by jnmbk (18)
/* $Id$ */

#ifndef VOID_MAP_H
#define VOID_MAP_H

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;
}

#endif /* VOID_MAP_H */