1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Spell: remove unneeded virtual functions

We should not try to override pure virtual with pure virtual
This commit is contained in:
Konstantin
2023-04-10 12:26:38 +03:00
committed by Konstantin P
parent 03eb997137
commit d99d1509f6

View File

@@ -53,12 +53,8 @@ public:
*/ */
virtual int32_t getLevelPower(const int32_t skillLevel) const = 0; virtual int32_t getLevelPower(const int32_t skillLevel) const = 0;
virtual std::string getNameTextID() const = 0;
virtual std::string getNameTranslated() const = 0;
virtual std::string getDescriptionTextID(int32_t level) const = 0; virtual std::string getDescriptionTextID(int32_t level) const = 0;
virtual std::string getDescriptionTranslated(int32_t level) const = 0; virtual std::string getDescriptionTranslated(int32_t level) const = 0;
}; };
} }