OpenTTD Source 20241224-master-gf74b0cf984
water_cmd.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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/>.
6 */
7
10#ifndef WATER_CMD_H
11#define WATER_CMD_H
12
13#include "command_type.h"
14#include "water_map.h"
15
17CommandCost CmdBuildCanal(DoCommandFlag flags, TileIndex tile, TileIndex start_tile, WaterClass wc, bool diagonal);
19
23
24#endif /* WATER_CMD_H */
Common return value for all commands.
Types related to commands.
@ CMDT_LANDSCAPE_CONSTRUCTION
Construction and destruction of objects on the map.
DoCommandFlag
List of flags for a command.
@ CMD_BUILD_SHIP_DEPOT
build a ship depot
@ CMD_BUILD_CANAL
build a canal
@ CMD_BUILD_LOCK
build a lock
@ CMD_AUTO
set the DC_AUTO flag on this command
Axis
Allow incrementing of DiagDirDiff variables.
CommandCost CmdBuildLock(DoCommandFlag flags, TileIndex tile)
Builds a lock.
CommandCost CmdBuildShipDepot(DoCommandFlag flags, TileIndex tile, Axis axis)
Build a ship depot.
CommandCost CmdBuildCanal(DoCommandFlag flags, TileIndex tile, TileIndex start_tile, WaterClass wc, bool diagonal)
Build a piece of canal.
Map accessors for water tiles.
WaterClass
classes of water (for WATER_TILE_CLEAR water tile type).
Definition water_map.h:39