summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/skills.h
diff options
context:
space:
mode:
authorRaphael Langella <raphael.langella@gmail.com>2011-10-06 14:01:57 +0000
committerRaphael Langella <raphael.langella@gmail.com>2011-10-07 01:08:41 +0200
commit88c2b84f8f2679d00b40427cc0d98715846aafb2 (patch)
tree106f5d9e0fc0ca2789b8c7d799364deb6329600b /crawl-ref/source/skills.h
parent2bf787f34700e92cf837ea1dc25e9dbe24156522 (diff)
downloadcrawl-ref-88c2b84f8f2679d00b40427cc0d98715846aafb2.tar.gz
crawl-ref-88c2b84f8f2679d00b40427cc0d98715846aafb2.zip
Fix many skill bugs with fsim.
Diffstat (limited to 'crawl-ref/source/skills.h')
-rw-r--r--crawl-ref/source/skills.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/crawl-ref/source/skills.h b/crawl-ref/source/skills.h
index ee1d81e2a4..559b7bb8f4 100644
--- a/crawl-ref/source/skills.h
+++ b/crawl-ref/source/skills.h
@@ -35,4 +35,5 @@ void train_skills(int exp, const int cost, const bool simu);
void train_skill(skill_type skill, int exp);
bool skill_trained(int i);
inline bool skill_trained(skill_type sk) { return skill_trained((int) sk); }
+void redraw_skill(skill_type exsk, skill_type old_best_skill = SK_NONE);
#endif