(svn r13307) -Codechange: Separate VehicleList and its two functions so only the 3 users include it, reducing dependencies on misc/smallvec.h

This commit is contained in:
peter1138
2008-05-28 11:56:21 +00:00
parent f97403803b
commit f731b31eda
8 changed files with 164 additions and 136 deletions

View File

@@ -6,7 +6,6 @@
#define VEHICLE_TYPE_H
#include "core/enum_type.hpp"
#include "misc/smallvec.h"
typedef uint16 VehicleID;
@@ -57,6 +56,4 @@ enum DepotCommand {
DEPOT_COMMAND_MASK = 0xF,
};
typedef SmallVector<const Vehicle*, 32> VehicleList;
#endif /* VEHICLE_TYPE_H */