summaryrefslogtreecommitdiff
path: root/src/roadveh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/roadveh.h')
-rw-r--r--src/roadveh.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/roadveh.h b/src/roadveh.h
index 340a74076..c3d8cbf94 100644
--- a/src/roadveh.h
+++ b/src/roadveh.h
@@ -41,6 +41,8 @@ struct RoadVehicle : public Vehicle {
const char *GetTypeString() { return "road vehicle"; }
void MarkDirty();
void UpdateDeltaXY(Direction direction);
+ ExpensesType GetExpenseType(bool income) { return income ? EXPENSES_ROADVEH_INC : EXPENSES_ROADVEH_RUN; }
+ WindowClass GetVehicleListWindowClass() { return WC_ROADVEH_LIST; }
};
#endif /* ROADVEH_H */