~ubuntu-branches/debian/squeeze/openttd/squeeze

« back to all changes in this revision

Viewing changes to src/effectvehicle_func.h

  • Committer: Bazaar Package Importer
  • Author(s): Jordi Mallach, Matthijs Kooijman, Jordi Mallach
  • Date: 2009-04-15 18:22:10 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090415182210-22ktb8kdbp2tf3bm
[ Matthijs Kooijman ]
* New upstream release.
* Remove Debian specific desktop file, upstream provides one now. 
* Add debian/watch file.

[ Jordi Mallach ]
* Bump Standards-Version to 3.8.1, with no changes required.
* Move to debhelper compat 7. Bump Build-Depends accordingly.
* Use dh_prep.
* Add "set -e" to config script.
* Remove a few extra doc files that get installed by upstream Makefile.
* Add more complete copyright information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: effectvehicle_func.h 12971 2008-05-06 15:11:33Z rubidium $ */
 
2
 
 
3
/** @file effectvehicle_func.h Functions related to effect vehicles. */
 
4
 
 
5
#ifndef EFFECTVEHICLE_FUNC_H
 
6
#define EFFECTVEHICLE_FUNC_H
 
7
 
 
8
#include "vehicle_type.h"
 
9
 
 
10
/** Effect vehicle types */
 
11
enum EffectVehicleType {
 
12
        EV_CHIMNEY_SMOKE   = 0,
 
13
        EV_STEAM_SMOKE     = 1,
 
14
        EV_DIESEL_SMOKE    = 2,
 
15
        EV_ELECTRIC_SPARK  = 3,
 
16
        EV_SMOKE           = 4,
 
17
        EV_EXPLOSION_LARGE = 5,
 
18
        EV_BREAKDOWN_SMOKE = 6,
 
19
        EV_EXPLOSION_SMALL = 7,
 
20
        EV_BULLDOZER       = 8,
 
21
        EV_BUBBLE          = 9
 
22
};
 
23
 
 
24
Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicleType type);
 
25
Vehicle *CreateEffectVehicleAbove(int x, int y, int z, EffectVehicleType type);
 
26
Vehicle *CreateEffectVehicleRel(const Vehicle *v, int x, int y, int z, EffectVehicleType type);
 
27
 
 
28
#endif /* EFFECTVEHICLE_FUNC_H */