AdventureOptions.h 723 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * CAdventureOptions.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 "../windows/CWindowObject.h"
  12. class CButton;
  13. /// Adventure options dialog where you can view the world, dig, play the replay of the last turn,...
  14. class AdventureOptions : public CWindowObject
  15. {
  16. std::shared_ptr<CButton> exit;
  17. std::shared_ptr<CButton> viewWorld;
  18. std::shared_ptr<CButton> puzzle;
  19. std::shared_ptr<CButton> dig;
  20. std::shared_ptr<CButton> scenInfo;
  21. std::shared_ptr<CButton> replay;
  22. public:
  23. AdventureOptions();
  24. static void showScenarioInfo();
  25. };