diff options
Diffstat (limited to 'src/localplayer.h')
-rw-r--r-- | src/localplayer.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/localplayer.h b/src/localplayer.h index 099a5f81..be8c020c 100644 --- a/src/localplayer.h +++ b/src/localplayer.h @@ -337,7 +337,12 @@ class LocalPlayer : public Player void setExperience(int skill, int current, int next); - static const std::string& getSkillName(int skill); + struct skillInfo { + std::string name; + std::string icon; + }; + + static const struct skillInfo& getSkillInfo(int skill); std::pair<int, int> getExperience(int skill); |