summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.h
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-10 15:11:07 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-10 15:11:07 +0000
commit684f80b554daadb08cf2c40b8e905737e8655530 (patch)
treee506d5ff31e40b979983a44f5f85b7f3930c0521 /crawl-ref/source/player.h
parentf8179d2e319879c5cdfa9083efb7edc1327c9bb5 (diff)
downloadcrawl-ref-684f80b554daadb08cf2c40b8e905737e8655530.tar.gz
crawl-ref-684f80b554daadb08cf2c40b8e905737e8655530.zip
Allow "any trap" and "any shop" (alternatives to "random trap" and "random
shop") in des files. Allow using '8', '9' and '0' in monster specifications. Tossed out some unused functions. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1281 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/player.h')
-rw-r--r--crawl-ref/source/player.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/crawl-ref/source/player.h b/crawl-ref/source/player.h
index a476b2d40a..9a578f4d7a 100644
--- a/crawl-ref/source/player.h
+++ b/crawl-ref/source/player.h
@@ -16,16 +16,6 @@
#include "externs.h"
-std::string actor_name(const monsters *actor, description_level_type desc);
-std::string actor_verb(const monsters *actor, const std::string &verb);
-int actor_size(const monsters *actor);
-int actor_damage_type(const monsters *actor);
-int actor_damage_brand(const monsters *actor);
-bool actor_swimming(const monsters *actor);
-bool actor_floundering(const monsters *actor);
-item_def *actor_weapon(const monsters *actor, int which_attack = -1);
-item_def *actor_shield(const monsters *actor);
-
bool move_player_to_grid( int x, int y, bool stepped, bool allow_shift,
bool force );
@@ -57,7 +47,6 @@ bool player_light_armour(bool with_skill = false);
* *********************************************************************** */
bool player_in_water(void);
bool player_is_swimming(void);
-bool player_floundering();
bool player_is_levitating(void);
/* ***********************************************************************