summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.h')
-rw-r--r--crawl-ref/source/player.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/crawl-ref/source/player.h b/crawl-ref/source/player.h
index a346cd9a38..1bc1bf72bc 100644
--- a/crawl-ref/source/player.h
+++ b/crawl-ref/source/player.h
@@ -16,6 +16,14 @@
#include "externs.h"
+enum genus_type
+{
+ GENPC_DRACONIAN, // 0
+ GENPC_ELVEN, // 1
+ GENPC_DWARVEN, // 2
+ GENPC_OGRE
+};
+
bool move_player_to_grid( int x, int y, bool stepped, bool allow_shift,
bool force );
@@ -424,7 +432,7 @@ void run_macro(const char *macroname = NULL);
int player_ghost_base_movement_speed();
-int count_worn_ego( special_armour_type ego );
+int count_worn_ego( int which_ego );
int stat_modifier( stat_type stat );
#endif