summaryrefslogtreecommitdiff
path: root/src/subsidy_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-05-01 19:14:12 +0000
committerrubidium <rubidium@openttd.org>2011-05-01 19:14:12 +0000
commit1a515e6344028854c855671c19f49d8f869eb18f (patch)
treee1bba97c1a8fd80f564729cc2d5fc2049110cb2a /src/subsidy_type.h
parentb27dd1dcd7375dae63724879eb0f56dd703e5312 (diff)
downloadopenttd-1a515e6344028854c855671c19f49d8f869eb18f.tar.xz
(svn r22405) -Document: some more "random-ish" tidbits
Diffstat (limited to 'src/subsidy_type.h')
-rw-r--r--src/subsidy_type.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/subsidy_type.h b/src/subsidy_type.h
index d4b2f68ec..734d72103 100644
--- a/src/subsidy_type.h
+++ b/src/subsidy_type.h
@@ -14,8 +14,9 @@
#include "core/enum_type.hpp"
+/** What part of a subsidy is something? */
enum PartOfSubsidy {
- POS_NONE = 0,
+ POS_NONE = 0, ///< nothing
POS_SRC = 1 << 0, ///< bit 0 set -> town/industry is source of subsidised path
POS_DST = 1 << 1, ///< bit 1 set -> town/industry is destination of subsidised path
};