mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-11 13:10:45 +00:00
16 lines
306 B
C
16 lines
306 B
C
/* $Id$ */
|
|
|
|
/** @file animated_tile_func.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 */
|