diff options
author | rubidium <rubidium@openttd.org> | 2007-12-21 21:50:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-12-21 21:50:46 +0000 |
commit | 9e9cfe6e59de14f7df9ab505f9bf5ef3d827545d (patch) | |
tree | d864de233dd5965735564d85017cf7abf0875933 /src/ai/trolly | |
parent | 65754b8d12099be586967a4bba5b82a484628b18 (diff) | |
download | openttd-9e9cfe6e59de14f7df9ab505f9bf5ef3d827545d.tar.xz |
(svn r11677) -Codechange: move price and command related types/functions to their respective places.
Diffstat (limited to 'src/ai/trolly')
-rw-r--r-- | src/ai/trolly/build.cpp | 2 | ||||
-rw-r--r-- | src/ai/trolly/pathfinder.cpp | 2 | ||||
-rw-r--r-- | src/ai/trolly/trolly.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ai/trolly/build.cpp b/src/ai/trolly/build.cpp index a83ccb5a2..53bf9b782 100644 --- a/src/ai/trolly/build.cpp +++ b/src/ai/trolly/build.cpp @@ -7,7 +7,7 @@ #include "../../map.h" #include "../../road_map.h" #include "../../vehicle.h" -#include "../../command.h" +#include "../../command_func.h" #include "trolly.h" #include "../../engine.h" #include "../../station.h" diff --git a/src/ai/trolly/pathfinder.cpp b/src/ai/trolly/pathfinder.cpp index a18542827..b81ddfebb 100644 --- a/src/ai/trolly/pathfinder.cpp +++ b/src/ai/trolly/pathfinder.cpp @@ -6,7 +6,7 @@ #include "../../debug.h" #include "../../functions.h" #include "../../map.h" -#include "../../command.h" +#include "../../command_func.h" #include "trolly.h" #include "../../depot.h" #include "../../tunnel_map.h" diff --git a/src/ai/trolly/trolly.cpp b/src/ai/trolly/trolly.cpp index c95e7d1a5..373e297d2 100644 --- a/src/ai/trolly/trolly.cpp +++ b/src/ai/trolly/trolly.cpp @@ -25,7 +25,7 @@ #include "../../station_map.h" #include "table/strings.h" #include "../../map.h" -#include "../../command.h" +#include "../../command_func.h" #include "trolly.h" #include "../../town.h" #include "../../industry.h" |