1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-06 09:09:40 +02:00

VcmiLua builds properly now

This commit is contained in:
Dydzio
2023-02-01 20:25:09 +01:00
parent 49c94c1498
commit 19925c2c25
11 changed files with 20 additions and 19 deletions

View File

@@ -19,7 +19,8 @@ class SecondarySkill;
class DLL_LINKAGE Skill : public EntityT<SecondarySkill>
{
public:
virtual std::string getDescriptionTextID(int level) const = 0;
virtual std::string getDescriptionTranslated(int level) const = 0;
};

View File

@@ -15,9 +15,9 @@
VCMI_LIB_NAMESPACE_BEGIN
class SecondarySkill;
class CSkill;
class Skill;
class DLL_LINKAGE SkillService : public EntityServiceT<SecondarySkill, CSkill>
class DLL_LINKAGE SkillService : public EntityServiceT<SecondarySkill, Skill>
{
public:
};