(svn r12474) -Codechange: split type related stuff from waypoints from waypoint.h (and openttd.h) to waypoint_type.h.

This commit is contained in:
rubidium
2008-03-28 16:41:12 +00:00
parent cdd5f90e64
commit f4d48f0e5b
7 changed files with 30 additions and 3 deletions

11
src/waypoint_type.h Normal file
View File

@@ -0,0 +1,11 @@
/* $Id$ */
/** @file waypoint_type.h Types related to waypoints. */
#ifndef WAYPOINT_TYPE_H
#define WAYPOINT_TYPE_H
typedef uint16 WaypointID;
struct Waypoint;
#endif /* WAYPOINT_TYPE_H */