summaryrefslogtreecommitdiff
path: root/src/signs_cmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/signs_cmd.h')
-rw-r--r--src/signs_cmd.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/signs_cmd.h b/src/signs_cmd.h
index 85f0ffbdf..1c4e1b465 100644
--- a/src/signs_cmd.h
+++ b/src/signs_cmd.h
@@ -11,9 +11,10 @@
#define SIGNS_CMD_H
#include "command_type.h"
+#include "signs_type.h"
-CommandProc CmdPlaceSign;
-CommandProc CmdRenameSign;
+CommandCost 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)