Files @ r11395:1a11d23553a4
Branch filter:

Location: cpp/openttd-patchpack/source/src/effectvehicle_func.h

translators
(svn r15754) -Update: WebTranslator2 update to 2009-03-17 18:42:46
bulgarian - 63 fixed by thetitan (63)
dutch - 4 fixed by habell (4)
romanian - 3 fixed by kkmic (3)
spanish - 3 fixed by eusebio (3)
turkish - 3 fixed by Emin (3)
ukrainian - 4 fixed by mad (4)
/* $Id$ */

/** @file effectvehicle_func.h Functions related to effect vehicles. */

#ifndef EFFECTVEHICLE_FUNC_H
#define EFFECTVEHICLE_FUNC_H

#include "vehicle_type.h"

/** Effect vehicle types */
enum EffectVehicleType {
	EV_CHIMNEY_SMOKE   = 0,
	EV_STEAM_SMOKE     = 1,
	EV_DIESEL_SMOKE    = 2,
	EV_ELECTRIC_SPARK  = 3,
	EV_SMOKE           = 4,
	EV_EXPLOSION_LARGE = 5,
	EV_BREAKDOWN_SMOKE = 6,
	EV_EXPLOSION_SMALL = 7,
	EV_BULLDOZER       = 8,
	EV_BUBBLE          = 9
};

Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicleType type);
Vehicle *CreateEffectVehicleAbove(int x, int y, int z, EffectVehicleType type);
Vehicle *CreateEffectVehicleRel(const Vehicle *v, int x, int y, int z, EffectVehicleType type);

#endif /* EFFECTVEHICLE_FUNC_H */