1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-23 21:29:13 +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

@ -53,12 +53,8 @@ public:
*/
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 getDescriptionTranslated(int32_t level) const = 0;
};
}