1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-22 05:59:10 +00:00

(svn r13928) -Add [YAPP]: Function for getting the path reservation state of any tile. (michi_cc)

This commit is contained in:
rubidium
2008-08-02 22:47:48 +00:00
parent df99103a31
commit 2bb8825538
5 changed files with 74 additions and 0 deletions

13
src/pbs.h Normal file
View File

@@ -0,0 +1,13 @@
/* $Id$ */
/** @file pbs.h PBS support routines */
#ifndef PBS_H
#define PBS_H
#include "tile_type.h"
#include "track_type.h"
TrackBits GetReservedTrackbits(TileIndex t);
#endif /* PBS_H */