Files
@ r28565:9ed8a63bcee5
Branch filter:
Location: cpp/openttd-patchpack/source/src/void_map.h - annotation
r28565:9ed8a63bcee5
966 B
text/x-c
Add: [Dependabot] introduce Dependabot to keep our workflows up-to-date (#11880)
r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r9111:983de9c5a848 r6423:c3b8b9853091 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r8108:1d5bdeea7e20 r8108:1d5bdeea7e20 r6489:47abbb44f4d0 r6489:47abbb44f4d0 r6489:47abbb44f4d0 r6489:47abbb44f4d0 r28410:d9c73d685bbc r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r26931:7d5bce03e821 r26931:7d5bce03e821 r26931:7d5bce03e821 r26931:7d5bce03e821 r26931:7d5bce03e821 r26931:7d5bce03e821 r26931:7d5bce03e821 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 r5475:3f5cd13d1b63 | /*
* This file is part of OpenTTD.
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file void_map.h Map accessors for void tiles. */
#ifndef VOID_MAP_H
#define VOID_MAP_H
#include "tile_map.h"
/**
* Make a nice void tile ;)
* @param t the tile to make void
*/
inline void MakeVoid(Tile t)
{
SetTileType(t, MP_VOID);
SetTileHeight(t, 0);
t.m1() = 0;
t.m2() = 0;
t.m3() = 0;
t.m4() = 0;
t.m5() = 0;
t.m6() = 0;
t.m7() = 0;
}
#endif /* VOID_MAP_H */
|