diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-16 19:33:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-16 22:33:53 +0300 |
commit | 99fc034012a3c97805014d578c8bb910beabfbc5 (patch) | |
tree | 6ab49c872e76b9cc94ede9c943426fab10a2a082 /src/gui/skilldialog.h | |
parent | 0fa3de24e2e6931a07cbc1fb3dadfff9091250cf (diff) | |
download | plus-99fc034012a3c97805014d578c8bb910beabfbc5.tar.gz plus-99fc034012a3c97805014d578c8bb910beabfbc5.tar.bz2 plus-99fc034012a3c97805014d578c8bb910beabfbc5.tar.xz plus-99fc034012a3c97805014d578c8bb910beabfbc5.zip |
Add support for skill description.
Diffstat (limited to 'src/gui/skilldialog.h')
-rw-r--r-- | src/gui/skilldialog.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gui/skilldialog.h b/src/gui/skilldialog.h index 45a5a8a43..e77bde935 100644 --- a/src/gui/skilldialog.h +++ b/src/gui/skilldialog.h @@ -45,9 +45,9 @@ struct SkillData final std::string name; std::string shortName; std::string dispName; + std::string description; Image *icon; - std::string particle; std::string soundHit; std::string soundMiss; @@ -80,7 +80,8 @@ struct SkillInfo final void update(); void draw(Graphics *const graphics, const int padding, - const int paddingText, const int y, const int width); + const int paddingText, const int spacingText, + const int y, const int width); void setIcon(const std::string &iconPath); }; |