summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/travel.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-10-17 07:51:25 +0200
committerRobert Vollmert <rvollmert@gmx.net>2009-10-17 07:51:25 +0200
commitdcc94e4df24a1111124d87532aaa263f55edf58d (patch)
treedf911326b4c245006eb94761f76e1af4093bd2fc /crawl-ref/source/travel.h
parent4b9dbd4fc204e70ef70f57ec0096981787844f82 (diff)
downloadcrawl-ref-dcc94e4df24a1111124d87532aaa263f55edf58d.tar.gz
crawl-ref-dcc94e4df24a1111124d87532aaa263f55edf58d.zip
Naming consistency.
Mostly rename functions from terrain.h that accept features of typ dgn_feature_type from grid_is_* to feat_is_*.
Diffstat (limited to 'crawl-ref/source/travel.h')
-rw-r--r--crawl-ref/source/travel.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/crawl-ref/source/travel.h b/crawl-ref/source/travel.h
index 7370d49d44..8ce242e5e1 100644
--- a/crawl-ref/source/travel.h
+++ b/crawl-ref/source/travel.h
@@ -66,17 +66,17 @@ void clear_excludes();
unsigned char is_waypoint(const coord_def &p);
bool is_exclude_root(const coord_def &p);
-bool is_stair(dungeon_feature_type gridc);
-bool is_travelable_stair(dungeon_feature_type gridc);
-bool is_escape_hatch(dungeon_feature_type gridc);
-bool is_gate(dungeon_feature_type gridc);
-command_type direction_to_command( char x, char y );
-bool is_altar(dungeon_feature_type gridc);
-bool is_resting( void );
+bool is_stair(dungeon_feature_type feat);
+bool is_travelable_stair(dungeon_feature_type feat);
+bool is_escape_hatch(dungeon_feature_type feat);
+bool is_gate(dungeon_feature_type feat);
+command_type direction_to_command(char x, char y);
+bool is_altar(dungeon_feature_type feat);
+bool is_resting(void);
#ifdef CLUA_BINDINGS
const char *trap_name(const coord_def &p);
#endif
-bool is_traversable(dungeon_feature_type grid);
+bool is_traversable(dungeon_feature_type feat);
void explore_pickup_event(int did_pickup, int tried_pickup);
bool is_excluded(const coord_def &p);