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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/player.h b/crawl-ref/source/player.h
index 9bc425f3de..04695039f3 100644
--- a/crawl-ref/source/player.h
+++ b/crawl-ref/source/player.h
@@ -24,7 +24,7 @@ bool player_in_branch( int branch );
bool player_in_hell( void );
int get_player_wielded_weapon();
-int player_equip( int slot, int sub_type, bool calc_unid = true );
+int player_equip( equipment_type slot, int sub_type, bool calc_unid = true );
int player_equip_ego_type( int slot, int sub_type );
int player_damage_type( void );
int player_damage_brand( void );
@@ -420,4 +420,7 @@ void run_macro(const char *macroname = NULL);
int player_ghost_base_movement_speed();
+int count_worn_ego( special_armour_type ego );
+int stat_modifier( stat_type stat );
+
#endif