src/newgrf_engine.h
changeset 6674 64f4781b4653
parent 6574 e1d1a12faaf7
child 6719 4cc327ad39d5
child 6986 168d3add1f13
child 9601 b499fdd106d5
--- a/src/newgrf_engine.h	Tue Mar 20 20:11:17 2007 +0000
+++ b/src/newgrf_engine.h	Wed Mar 21 03:06:21 2007 +0000
@@ -1,5 +1,7 @@
 /* $Id$ */
 
+/** @file newgrf_engine.h */
+
 #ifndef NEWGRF_ENGINE_H
 #define NEWGRF_ENGINE_H
 
@@ -7,9 +9,6 @@
 #include "direction.h"
 #include "newgrf_cargo.h"
 
-/** @file newgrf_engine.h
- */
-
 extern int _traininfo_vehicle_pitch;
 extern int _traininfo_vehicle_width;
 
@@ -38,11 +37,11 @@
 
 enum VehicleTrigger {
 	VEHICLE_TRIGGER_NEW_CARGO     = 1,
-	// Externally triggered only for the first vehicle in chain
+	/* Externally triggered only for the first vehicle in chain */
 	VEHICLE_TRIGGER_DEPOT         = 2,
-	// Externally triggered only for the first vehicle in chain, only if whole chain is empty
+	/* Externally triggered only for the first vehicle in chain, only if whole chain is empty */
 	VEHICLE_TRIGGER_EMPTY         = 4,
-	// Not triggered externally (called for the whole chain if we got NEW_CARGO)
+	/* Not triggered externally (called for the whole chain if we got NEW_CARGO) */
 	VEHICLE_TRIGGER_ANY_NEW_CARGO = 8,
 };
 void TriggerVehicle(Vehicle *veh, VehicleTrigger trigger);