diff options
Diffstat (limited to 'src/gui/windows/skilldialog.h')
-rw-r--r-- | src/gui/windows/skilldialog.h | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/gui/windows/skilldialog.h b/src/gui/windows/skilldialog.h index 4adf813af..a24f44a5f 100644 --- a/src/gui/windows/skilldialog.h +++ b/src/gui/windows/skilldialog.h @@ -145,14 +145,18 @@ class SkillDialog final : public Window, int level, const bool withText, const std::string &text, - CastTypeT castType); + CastTypeT castType, + const int offsetX, + const int offsetY); static void useSkill(const SkillInfo *const info, const AutoTarget autoTarget, int level, const bool withText, const std::string &text, - const CastTypeT castType); + const CastTypeT castType, + const int offsetX, + const int offsetY); SkillData *getSkillData(const int id) const; @@ -176,21 +180,27 @@ class SkillDialog final : public Window, const AutoTarget autoTarget, int level, const bool withText, - const std::string &text); + const std::string &text, + int offsetX, + int offsetY); static void useSkillTarget(const SkillInfo *const info, const AutoTarget autoTarget, int level, const bool withText, const std::string &text, - const Being *being); + const Being *being, + int offsetX, + int offsetY); static void useSkillPosition(const SkillInfo *const info, int level, const bool withText, const std::string &text, const int x, - const int y); + const int y, + int offsetX, + int offsetY); void addSkillDuration(SkillInfo *const skill); |