summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tileweb.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-12-07 08:28:09 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-12-08 18:55:48 +0100
commitb3c13e2a47ae442a567e740462508e6d8c1dfc25 (patch)
tree5d0cdebf054bd374d15873ea23677082fcde24de /crawl-ref/source/tileweb.h
parent70e25bb2b160252713384b64fc6f30f6cac2762a (diff)
downloadcrawl-ref-b3c13e2a47ae442a567e740462508e6d8c1dfc25.tar.gz
crawl-ref-b3c13e2a47ae442a567e740462508e6d8c1dfc25.zip
Brace and std:: removal.
Diffstat (limited to 'crawl-ref/source/tileweb.h')
-rw-r--r--crawl-ref/source/tileweb.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/crawl-ref/source/tileweb.h b/crawl-ref/source/tileweb.h
index 71635208e3..b9dcc4b5b6 100644
--- a/crawl-ref/source/tileweb.h
+++ b/crawl-ref/source/tileweb.h
@@ -37,11 +37,11 @@ struct player_info
{
player_info();
- std::string name;
- std::string job_title;
+ string name;
+ string job_title;
bool wizard;
- std::string species;
- std::string god;
+ string species;
+ string god;
bool under_penance;
uint8_t piety_rank;
@@ -65,16 +65,16 @@ struct player_info
int elapsed_time;
int lives, deaths;
- std::string place;
+ string place;
int depth;
coord_def position;
- std::vector<status_info> status;
+ vector<status_info> status;
FixedVector<item_info, ENDOFPACK> inv;
FixedVector<int8_t, NUM_EQUIP> equip;
int8_t quiver_item;
- std::string unarmed_attack;
+ string unarmed_attack;
};
class TilesFramework