mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 02:19:41 +00:00
25 lines
1.2 KiB
C++
25 lines
1.2 KiB
C++
/*
|
|
* 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 signs_cmd.h Command definitions related to signs. */
|
|
|
|
#ifndef SIGNS_CMD_H
|
|
#define SIGNS_CMD_H
|
|
|
|
#include "command_type.h"
|
|
#include "signs_type.h"
|
|
|
|
std::tuple<CommandCost, SignID> CmdPlaceSign(DoCommandFlag flags, TileIndex tile, const std::string &text);
|
|
CommandCost CmdRenameSign(DoCommandFlag flags, SignID sign_id, const std::string &text);
|
|
|
|
DEF_CMD_TRAIT(CMD_PLACE_SIGN, CmdPlaceSign, CMD_DEITY, CMDT_OTHER_MANAGEMENT)
|
|
DEF_CMD_TRAIT(CMD_RENAME_SIGN, CmdRenameSign, CMD_DEITY, CMDT_OTHER_MANAGEMENT)
|
|
|
|
void CcPlaceSign(Commands cmd, const CommandCost &result, SignID new_sign);
|
|
|
|
#endif /* SIGNS_CMD_H */
|