1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00

Merged bonus names with bonus descriptions, since they are never used

separately
This commit is contained in:
Ivan Savenko
2025-05-23 17:12:51 +03:00
parent 4cd911247d
commit 3f4ff58a5e
22 changed files with 1214 additions and 2360 deletions

View File

@@ -24,7 +24,7 @@ class DLL_LINKAGE IBonusTypeHandler : public IHandlerBase
public:
virtual ~IBonusTypeHandler() = default;
virtual std::string bonusToString(const std::shared_ptr<Bonus> & bonus, const IBonusBearer * bearer, bool description) const = 0;
virtual std::string bonusToString(const std::shared_ptr<Bonus> & bonus, const IBonusBearer * bearer) const = 0;
virtual ImagePath bonusToGraphics(const std::shared_ptr<Bonus> & bonus) const = 0;
};