OpenTTD
newgrf_canal.h
Go to the documentation of this file.
1 /* $Id: newgrf_canal.h 23735 2012-01-03 20:26:05Z rubidium $ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8  */
9 
12 #ifndef NEWGRF_CANAL_H
13 #define NEWGRF_CANAL_H
14 
15 #include "newgrf.h"
16 #include "tile_type.h"
17 
21 };
22 
24 struct WaterFeature {
25  const SpriteGroup *group;
26  const GRFFile *grffile;
27  uint8 callback_mask;
28  uint8 flags;
29 };
30 
31 
33 extern WaterFeature _water_feature[CF_END];
34 
35 
37 
38 uint GetCanalSpriteOffset(CanalFeature feature, TileIndex tile, uint cur_offset);
39 
40 #endif /* NEWGRF_CANAL_H */