CScenarioInfoScreen.h 711 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * CScenarioInfoScreen.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 "CSelectionBase.h"
  12. /// Scenario information screen shown during the game
  13. class CScenarioInfoScreen : public WindowBase, public ISelectionScreenInfo
  14. {
  15. public:
  16. std::shared_ptr<CButton> buttonBack;
  17. std::shared_ptr<InfoCard> card;
  18. std::shared_ptr<OptionsTab> opt;
  19. const StartInfo * localSi;
  20. CMapInfo * localMi;
  21. CScenarioInfoScreen();
  22. ~CScenarioInfoScreen();
  23. const CMapInfo * getMapInfo() override;
  24. const StartInfo * getStartInfo() override;
  25. };