HeroType.h 877 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * HeroType.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "Entity.h"
  12. VCMI_LIB_NAMESPACE_BEGIN
  13. class HeroTypeID;
  14. class DLL_LINKAGE HeroType : public EntityT<HeroTypeID>
  15. {
  16. virtual std::string getBiographyTranslated() const = 0;
  17. virtual std::string getSpecialtyNameTranslated() const = 0;
  18. virtual std::string getSpecialtyDescriptionTranslated() const = 0;
  19. virtual std::string getSpecialtyTooltipTranslated() const = 0;
  20. virtual std::string getBiographyTextID() const = 0;
  21. virtual std::string getSpecialtyNameTextID() const = 0;
  22. virtual std::string getSpecialtyDescriptionTextID() const = 0;
  23. virtual std::string getSpecialtyTooltipTextID() const = 0;
  24. };
  25. VCMI_LIB_NAMESPACE_END