mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-10 08:00:05 +00:00
16 lines
482 B
C
16 lines
482 B
C
/* $Id$ */
|
|
|
|
/** @file vehiclelist.h Functions and type for generating vehicle lists. */
|
|
|
|
#ifndef VEHICLELIST_H
|
|
#define VEHICLELIST_H
|
|
|
|
#include "core/smallvec_type.hpp"
|
|
|
|
typedef SmallVector<const Vehicle *, 32> VehicleList;
|
|
|
|
void GenerateVehicleSortList(VehicleList *list, VehicleType type, PlayerID owner, uint32 index, uint16 window_type);
|
|
void BuildDepotVehicleList(VehicleType type, TileIndex tile, VehicleList *engine_list, VehicleList *wagon_list);
|
|
|
|
#endif /* VEHICLELIST_H */
|