diff options
author | Michael Lutz <michi@icosahedron.de> | 2021-10-10 02:35:06 +0200 |
---|---|---|
committer | Michael Lutz <michi@icosahedron.de> | 2021-12-16 22:28:32 +0100 |
commit | 123c7f99c342aa9eb7ca505f0b49257fc8eee7ff (patch) | |
tree | eaa3f1c377393e03263a974b7080eacc6f80ae77 /src/network | |
parent | 7048e1522f7095e7c716c2488d78711ab6ed912c (diff) | |
download | openttd-123c7f99c342aa9eb7ca505f0b49257fc8eee7ff.tar.xz |
Codechange: Move command callback declarations to the cmd header files.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network_command.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/network/network_command.cpp b/src/network/network_command.cpp index 6df53d7da..0fae6bcbf 100644 --- a/src/network/network_command.cpp +++ b/src/network/network_command.cpp @@ -14,6 +14,19 @@ #include "../command_func.h" #include "../company_func.h" #include "../settings_type.h" +#include "../airport_cmd.h" +#include "../depot_cmd.h" +#include "../dock_cmd.h" +#include "../group_cmd.h" +#include "../industry_cmd.h" +#include "../rail_cmd.h" +#include "../road_cmd.h" +#include "../terraform_cmd.h" +#include "../town_cmd.h" +#include "../train_cmd.h" +#include "../tunnelbridge_cmd.h" +#include "../vehicle_cmd.h" +#include "../script/script_cmd.h" #include "../safeguards.h" |