summaryrefslogtreecommitdiff
path: root/src/vehicle_type.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2008-02-13 14:21:36 +0000
committersmatz <smatz@openttd.org>2008-02-13 14:21:36 +0000
commita3e3cd7d46c778fa5bfd8c5ec10281e557dbeb3c (patch)
treef31f432525a86f656f7d7d5e7c49bbd75af4a86b /src/vehicle_type.h
parent3abf3e3fa4a1b5327a92a34e9cb0b82c0e7032cd (diff)
downloadopenttd-a3e3cd7d46c778fa5bfd8c5ec10281e557dbeb3c.tar.xz
(svn r12129) -Change [FS#1759]: simplified patch settings for pathfinders (Yorick)
Diffstat (limited to 'src/vehicle_type.h')
-rw-r--r--src/vehicle_type.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/vehicle_type.h b/src/vehicle_type.h
index a6d5aae4d..629c7bb3e 100644
--- a/src/vehicle_type.h
+++ b/src/vehicle_type.h
@@ -52,4 +52,12 @@ enum EffectVehicle {
EV_BUBBLE = 9
};
+/** Pathfinding option states */
+enum {
+ VPF_OPF = 0, ///< The Original PathFinder
+ VPF_NTP = 0, ///< New Train Pathfinder, replacing OPF for trains
+ VPF_NPF = 1, ///< New PathFinder
+ VPF_YAPF = 2, ///< Yet Another PathFinder
+};
+
#endif /* VEHICLE_TYPE_H */