summaryrefslogtreecommitdiff
path: root/src/vehiclelist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vehiclelist.h')
-rw-r--r--src/vehiclelist.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/vehiclelist.h b/src/vehiclelist.h
index 5c13f326b..af984f451 100644
--- a/src/vehiclelist.h
+++ b/src/vehiclelist.h
@@ -34,6 +34,9 @@ struct VehicleListIdentifier {
CompanyID company; ///< The company associated with this list.
uint32 index; ///< A vehicle list type specific index.
+ uint32 Pack();
+ bool Unpack(uint32 data);
+
/**
* Create a simple vehicle list.
* @param type List type.
@@ -43,6 +46,11 @@ struct VehicleListIdentifier {
*/
VehicleListIdentifier(VehicleListType type, VehicleType vtype, CompanyID company, uint index = 0) :
type(type), vtype(vtype), company(company), index(index) {}
+
+ VehicleListIdentifier(uint32 data);
+
+ /** Simple empty constructor. In this case you must set everything! */
+ VehicleListIdentifier() {}
};
typedef SmallVector<const Vehicle *, 32> VehicleList;