mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
12 lines
279 B
C
12 lines
279 B
C
/* $Id$ */
|
|
|
|
/** @file articulated_vehicles.h */
|
|
|
|
#ifndef ARTICULATED_VEHICLES_H
|
|
#define ARTICULATED_VEHICLES_H
|
|
|
|
uint CountArticulatedParts(EngineID engine_type, bool purchase_window);
|
|
void AddArticulatedParts(Vehicle **vl, VehicleType type);
|
|
|
|
#endif /* ARTICULATED_VEHICLES_H */
|