summaryrefslogtreecommitdiff
path: root/src/vehicle_cmd.h
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2021-11-02 21:34:39 +0100
committerMichael Lutz <michi@icosahedron.de>2021-12-16 22:28:32 +0100
commit4f3ea3907e23428461c626b6c861d834b358bc9f (patch)
treef60f17d713ed155a738adb469eed7f4262ffbe3c /src/vehicle_cmd.h
parentccefa76a4686581b8d1a9bd13d7d754807a9f8d1 (diff)
downloadopenttd-4f3ea3907e23428461c626b6c861d834b358bc9f.tar.xz
Codechange: Un-bitstuff commands taking a ClientID (i.e. CMD_CLIENT_ID).
Diffstat (limited to 'src/vehicle_cmd.h')
-rw-r--r--src/vehicle_cmd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicle_cmd.h b/src/vehicle_cmd.h
index e6872e838..98444033c 100644
--- a/src/vehicle_cmd.h
+++ b/src/vehicle_cmd.h
@@ -12,8 +12,8 @@
#include "command_type.h"
-CommandProc CmdBuildVehicle;
-CommandProc CmdSellVehicle;
+CommandCost CmdBuildVehicle(DoCommandFlag flags, TileIndex tile, EngineID eid, bool use_free_vehicles, CargoID cargo, ClientID client_id);
+CommandCost CmdSellVehicle(DoCommandFlag flags, TileIndex tile, VehicleID v_id, bool sell_chain, bool backup_order, ClientID client_id);
CommandProc CmdRefitVehicle;
CommandProc CmdSendVehicleToDepot;
CommandProc CmdChangeServiceInt;