| 12345678910111213141516171819202122232425262728293031 | 
							- /*
 
-  * IBonusTypeHandler.h, part of VCMI engine
 
-  *
 
-  * Authors: listed in file AUTHORS in main folder
 
-  *
 
-  * License: GNU General Public License v2.0 or later
 
-  * Full text of license available in license.txt file, in main folder
 
-  *
 
-  */
 
- #pragma once
 
- #include "filesystem/ResourcePath.h"
 
- #include "IHandlerBase.h"
 
- VCMI_LIB_NAMESPACE_BEGIN
 
- class IBonusBearer;
 
- struct Bonus;
 
- ///High level interface for BonusTypeHandler
 
- 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 ImagePath bonusToGraphics(const std::shared_ptr<Bonus> & bonus) const = 0;
 
- };
 
- VCMI_LIB_NAMESPACE_END
 
 
  |