summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-06-08 21:40:09 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-06-08 21:40:09 +0200
commit13c6cab02a22a461521f9261bb9bbaa8ce51c4b9 (patch)
treeddeaa27d7627cd882b58423da9a2e5b184a1427f /crawl-ref/source/fight.h
parenta7e9368205d063d909ea949a912e846997a7636f (diff)
downloadcrawl-ref-13c6cab02a22a461521f9261bb9bbaa8ce51c4b9.tar.gz
crawl-ref-13c6cab02a22a461521f9261bb9bbaa8ce51c4b9.zip
Bring sanity to enums by making them diffable/patchable.
Diffstat (limited to 'crawl-ref/source/fight.h')
-rw-r--r--crawl-ref/source/fight.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/fight.h b/crawl-ref/source/fight.h
index 5f2c0eceec..626a9cbf08 100644
--- a/crawl-ref/source/fight.h
+++ b/crawl-ref/source/fight.h
@@ -21,7 +21,7 @@ enum unarmed_attack_type
UNAT_BITE,
UNAT_PSEUDOPODS,
UNAT_FIRST_ATTACK = UNAT_KICK,
- UNAT_LAST_ATTACK = UNAT_PSEUDOPODS
+ UNAT_LAST_ATTACK = UNAT_PSEUDOPODS,
};
enum unchivalric_attack_type
@@ -36,12 +36,12 @@ enum unchivalric_attack_type
UCAT_PETRIFIED,
UCAT_PARALYSED,
UCAT_SLEEPING,
- UCAT_ALLY
+ UCAT_ALLY,
};
enum attack_final_effect_flavor
{
- FINEFF_LIGHTNING_DISCHARGE
+ FINEFF_LIGHTNING_DISCHARGE,
};
struct attack_final_effect
{