2009-07-22 11:18:19 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/** @file waypoint_func.h Functions related to waypoints. */
|
|
|
|
|
|
|
|
#ifndef WAYPOINT_FUNC_H
|
|
|
|
#define WAYPOINT_FUNC_H
|
|
|
|
|
|
|
|
#include "rail_type.h"
|
|
|
|
#include "command_type.h"
|
2009-07-28 22:06:38 +01:00
|
|
|
#include "station_type.h"
|
2009-07-22 11:18:19 +01:00
|
|
|
|
2009-07-23 01:14:05 +01:00
|
|
|
CommandCost RemoveBuoy(TileIndex tile, DoCommandFlag flags);
|
|
|
|
|
2009-07-22 11:18:19 +01:00
|
|
|
void ShowWaypointWindow(const Waypoint *wp);
|
|
|
|
void DrawWaypointSprite(int x, int y, int stat_id, RailType railtype);
|
|
|
|
void MakeDefaultWaypointName(Waypoint *wp);
|
|
|
|
|
|
|
|
#endif /* WAYPOINT_FUNC_H */
|