summaryrefslogtreecommitdiff
path: root/src/aircraft.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-08-29 21:27:16 +0000
committerrubidium <rubidium@openttd.org>2007-08-29 21:27:16 +0000
commit3f3b013b99ac0378ed94098ca19e864d208880c7 (patch)
treec750fba2dc3e7efcc74cbccf329c29e874b3102e /src/aircraft.h
parent99409d99d0cffdbd82aaa5f3a6f5da2c96623678 (diff)
downloadopenttd-3f3b013b99ac0378ed94098ca19e864d208880c7.tar.xz
(svn r10999) -Codechange: unify the way the running cost of a vehicle is determined. Patch by nycom.
Diffstat (limited to 'src/aircraft.h')
-rw-r--r--src/aircraft.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/aircraft.h b/src/aircraft.h
index 0a32703e2..15a5530e0 100644
--- a/src/aircraft.h
+++ b/src/aircraft.h
@@ -7,6 +7,8 @@
#include "station_map.h"
#include "vehicle.h"
+#include "engine.h"
+#include "variables.h"
/** An aircraft can be one ot those types */
enum AircraftSubType {
@@ -130,6 +132,7 @@ struct Aircraft : public Vehicle {
int GetImage(Direction direction) const;
int GetDisplaySpeed() const { return this->cur_speed * 10 / 16; }
int GetDisplayMaxSpeed() const { return this->max_speed * 10 / 16; }
+ Money GetRunningCost() const { return AircraftVehInfo(this->engine_type)->running_cost * _price.aircraft_running; }
void Tick();
};