(svn r5186) - NewGRF: show default aircraft cargo type and the purchase list (mart3p)

This commit is contained in:
2006-06-09 06:34:28 +00:00
parent ffeb87763f
commit a7fbd158a0
3 changed files with 22 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
/* $Id$ */
#ifndef AIRCRAFT_H
#define AIRCRAFT_H
#include "station_map.h"
#include "vehicle.h"
@@ -14,3 +17,7 @@ static inline bool IsAircraftInHangarStopped(const Vehicle* v)
{
return IsAircraftInHangar(v) && v->vehstatus & VS_STOPPED;
}
uint16 AircraftDefaultCargoCapacity(CargoID cid, EngineID engine_type);
#endif /* AIRCRAFT_H */