File diff r12015:489eee6f86b7 → r12016:12cc374b77e8
src/order_type.h
Show inline comments
 
@@ -31,16 +31,14 @@ enum OrderType {
 
	OT_DUMMY         = 5,
 
	OT_GOTO_WAYPOINT = 6,
 
	OT_CONDITIONAL   = 7,
 
	OT_END
 
};
 

	
 
/* It needs to be 8bits, because we save and load it as such */
 
/** Define basic enum properties */
 
template <> struct EnumPropsT<OrderType> : MakeEnumPropsT<OrderType, byte, OT_BEGIN, OT_END, OT_END> {};
 
typedef TinyEnumT<OrderType> OrderTypeByte;
 
/** It needs to be 8bits, because we save and load it as such */
 
typedef SimpleTinyEnumT<OrderType, byte> OrderTypeByte;
 

	
 

	
 
/**
 
 * Flags related to the unloading order.
 
 */
 
enum OrderUnloadFlags {