roadveh.h
author bjarni
Thu, 08 Feb 2007 19:24:36 +0000
branch0.5
changeset 5436 c60526841627
parent 4666 850b5b6e4bac
permissions -rw-r--r--
(svn r8643) [0.5] -Fix: [OSX] link statically to freetype when STATIC is set
/* $Id$ */

#ifndef ROADVEH_H
#define ROADVEH_H

#include "vehicle.h"


static inline bool IsRoadVehInDepot(const Vehicle* v)
{
	assert(v->type == VEH_Road);
	return v->u.road.state == 254;
}

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

void CcCloneRoadVeh(bool success, TileIndex tile, uint32 p1, uint32 p2);

#endif /* ROADVEH_H */