diff -r 009a240d035a -r d65cd19f7117 ttd.h --- a/ttd.h Mon May 02 22:13:20 2005 +0000 +++ b/ttd.h Mon May 02 23:59:11 2005 +0000 @@ -25,6 +25,15 @@ int b; } Pair; +/** + * Is used as a general sortable struct (using qsort and friends). Is used for + * sorting vehicles and stations at the moment + */ +typedef struct SortStruct { + uint32 index; + byte owner; +} SortStruct; + typedef struct YearMonthDay { int year, month, day; } YearMonthDay;