(svn r15101) -Change [API CHANGE]: more consistant naming for consts:
INVALID_TOWN_RATING -> TOWN_RATING_INVALID INVALID_TRANSPORT -> TRANSPORT_INVALID INVALID_ORDER -> ORDER_INVALID INVALID_GROUP -> GROUP_INVALID GROUP_ALL/DEFAULT -> ALL/DEFAULT_GROUP VEHICLE_RAIL/ROAD/.. -> VT_RAIL/ROAD/.. MY_COMPANY -> COMPANY_SELF FIRST/LAST/INVALID_COMPANY -> COMPANY_FIRST/LAST/INVALID
This commit is contained in:
@@ -20,9 +20,9 @@ public:
|
||||
*/
|
||||
enum GroupID {
|
||||
/* Values are important, as they represent the internal state of the game (see group_type.h). */
|
||||
ALL_GROUP = 0xFFFD, //!< All vehicles are in this group.
|
||||
DEFAULT_GROUP = 0xFFFE, //!< Vehicles not put in any other group are in this one.
|
||||
INVALID_GROUP = 0xFFFF, //!< An invalid group id.
|
||||
GROUP_ALL = 0xFFFD, //!< All vehicles are in this group.
|
||||
GROUP_DEFAULT = 0xFFFE, //!< Vehicles not put in any other group are in this one.
|
||||
GROUP_INVALID = 0xFFFF, //!< An invalid group id.
|
||||
};
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user