mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-04 05:15:21 +00:00
16 lines
301 B
C
16 lines
301 B
C
|
/* $Id$ */
|
||
|
|
||
|
/** @file animated_tile.h Tile animation! */
|
||
|
|
||
|
#ifndef ANIMATED_TILE_H
|
||
|
#define ANIMATED_TILE_H
|
||
|
|
||
|
#include "tile_type.h"
|
||
|
|
||
|
void AddAnimatedTile(TileIndex tile);
|
||
|
void DeleteAnimatedTile(TileIndex tile);
|
||
|
void AnimateAnimatedTiles();
|
||
|
void InitializeAnimatedTiles();
|
||
|
|
||
|
#endif /* ANIMATED_TILE_H */
|