summaryrefslogtreecommitdiff
path: root/src/net/skillhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/skillhandler.h')
-rw-r--r--src/net/skillhandler.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/net/skillhandler.h b/src/net/skillhandler.h
index 9c9318c66..996101149 100644
--- a/src/net/skillhandler.h
+++ b/src/net/skillhandler.h
@@ -23,6 +23,8 @@
#ifndef NET_SKILLHANDLER_H
#define NET_SKILLHANDLER_H
+#include "enums/simpletypes/beingid.h"
+
#include <iosfwd>
#include "localconsts.h"
@@ -35,13 +37,16 @@ class SkillHandler notfinal
virtual ~SkillHandler()
{ }
- virtual void useBeing(const int id, const int level,
- const int beingId) const = 0;
+ virtual void useBeing(const int id,
+ const int level,
+ const BeingId beingId) const = 0;
- virtual void usePos(const int id, const int level,
+ virtual void usePos(const int id,
+ const int level,
const int x, const int y) const = 0;
- virtual void usePos(const int id, const int level,
+ virtual void usePos(const int id,
+ const int level,
const int x, const int y,
const std::string &text) const = 0;