summaryrefslogtreecommitdiff
path: root/src/newgrf_callbacks.h
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-03-15 17:42:32 +0000
committerbelugas <belugas@openttd.org>2007-03-15 17:42:32 +0000
commit78b4c42f17fc1815960eeed3e6e56423e3d22ed8 (patch)
tree9903931dc85c8883cbae2300df0512f35461f498 /src/newgrf_callbacks.h
parent41caaf4d144f8f7b0e401f8e55a1995fb793f85c (diff)
downloadopenttd-78b4c42f17fc1815960eeed3e6e56423e3d22ed8.tar.xz
(svn r9215) -Documentation : correct Doxygen of comments
Diffstat (limited to 'src/newgrf_callbacks.h')
-rw-r--r--src/newgrf_callbacks.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/newgrf_callbacks.h b/src/newgrf_callbacks.h
index 84c21f53d..22aecc649 100644
--- a/src/newgrf_callbacks.h
+++ b/src/newgrf_callbacks.h
@@ -11,12 +11,12 @@
* Names are formatted as CBID_<CLASS>_<CALLBACK>
*/
enum CallbackID {
- // Powered wagons, if the result is lower as 0x40 then the wagon is powered
- // TODO: interpret the rest of the result, aka "visual effects"
+ /* Powered wagons, if the result is lower as 0x40 then the wagon is powered
+ * @todo : interpret the rest of the result, aka "visual effects" */
CBID_TRAIN_WAGON_POWER = 0x10,
- // Vehicle length, returns the amount of 1/8's the vehicle is shorter
- // only for train vehicles
+ /* Vehicle length, returns the amount of 1/8's the vehicle is shorter
+ * only for train vehicles */
CBID_TRAIN_VEHICLE_LENGTH = 0x11,
/* Called (if appropriate bit in callback mask is set) to determine the
@@ -31,8 +31,8 @@ enum CallbackID {
* to choose a sprite layout to draw, instead of the standard 0-7 range */
CBID_STATION_SPRITE_LAYOUT = 0x14,
- // Refit capacity, the passed vehicle needs to have its ->cargo_type set to
- // the cargo we are refitting to, returns the new cargo capacity
+ /* Refit capacity, the passed vehicle needs to have its ->cargo_type set to
+ * the cargo we are refitting to, returns the new cargo capacity */
CBID_VEHICLE_REFIT_CAPACITY = 0x15,
CBID_TRAIN_ARTIC_ENGINE = 0x16,