summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/species.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/species.h')
-rw-r--r--crawl-ref/source/species.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/species.h b/crawl-ref/source/species.h
index 03709311fa..d84219847c 100644
--- a/crawl-ref/source/species.h
+++ b/crawl-ref/source/species.h
@@ -5,15 +5,15 @@
species_type get_species(const int index);
species_type random_draconian_player_species();
int ng_num_species();
-int get_species_by_abbrev(const char *abbrev);
-const char *get_species_abbrev(int which_species);
+species_type get_species_by_abbrev(const char *abbrev);
+const char *get_species_abbrev(species_type which_species);
int get_species_index_by_abbrev(const char *abbrev);
int get_species_index_by_name(const char *name);
// from player.cc
-std::string species_name( species_type speci, int level, bool genus = false,
- bool adj = false );
-int str_to_species(const std::string &species);
+std::string species_name(species_type speci, int level, bool genus = false,
+ bool adj = false);
+species_type str_to_species(const std::string &species);
#endif