mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-09 19:10:38 +00:00
14 lines
306 B
C
14 lines
306 B
C
/* $Id$ */
|
|
|
|
/** @file articulated_vehicles.h */
|
|
|
|
#ifndef ARTICULATED_VEHICLES_H
|
|
#define ARTICULATED_VEHICLES_H
|
|
|
|
#include "vehicle_type.h"
|
|
|
|
uint CountArticulatedParts(EngineID engine_type, bool purchase_window);
|
|
void AddArticulatedParts(Vehicle **vl, VehicleType type);
|
|
|
|
#endif /* ARTICULATED_VEHICLES_H */
|