void_map.h
author peter1138
Sun, 16 Apr 2006 11:26:23 +0000
changeset 3565 ef0a9ef56fa0
parent 3145 e833d7a78887
child 4666 172a0cdf28a6
permissions -rw-r--r--
(svn r4446) - Add function to determine if a Sprite ID exists.
/* $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