summaryrefslogtreecommitdiff
path: root/src/engine_base.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-19 09:45:44 +0000
committerrubidium <rubidium@openttd.org>2009-02-19 09:45:44 +0000
commit02c52430c88db61e4004cf94a99449cd464cbd55 (patch)
treec9ee92ae7cbfe93892ebfded0c1f663c6a2f9e99 /src/engine_base.h
parent9a507acf377cc14ff7bf0ab50b34b23aed98d218 (diff)
downloadopenttd-02c52430c88db61e4004cf94a99449cd464cbd55.tar.xz
(svn r15521) -Codechange: add helper function to get the display tractive effort of a vehicle.
Diffstat (limited to 'src/engine_base.h')
-rw-r--r--src/engine_base.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/engine_base.h b/src/engine_base.h
index 787ae804b..dbbb2c308 100644
--- a/src/engine_base.h
+++ b/src/engine_base.h
@@ -55,6 +55,7 @@ struct Engine : PoolItem<Engine, EngineID, &_Engine_pool> {
uint GetDisplayMaxSpeed() const;
uint GetPower() const;
uint GetDisplayWeight() const;
+ uint GetDisplayMaxTractiveEffort() const;
};
static inline bool IsEngineIndex(uint index)