Files @ r4167:c2fe5fc7b838
Branch filter:

Location: cpp/openttd-patchpack/source/aircraft.h

miham
(svn r5601) WebTranslator2 update to 2006-07-24 22:10:14
german - 1 changed by Neonox (1)
slovak - 10 changed by lengyel (10)
/* $Id$ */

#ifndef AIRCRAFT_H
#define AIRCRAFT_H

#include "station_map.h"
#include "vehicle.h"


static inline bool IsAircraftInHangar(const Vehicle* v)
{
	assert(v->type == VEH_Aircraft);
	return v->vehstatus & VS_HIDDEN && IsHangarTile(v->tile);
}

static inline bool IsAircraftInHangarStopped(const Vehicle* v)
{
	return IsAircraftInHangar(v) && v->vehstatus & VS_STOPPED;
}

uint16 AircraftDefaultCargoCapacity(CargoID cid, EngineID engine_type);

#endif /* AIRCRAFT_H */