2017-07-13 10:26:03 +02:00
|
|
|
/*
|
2023-02-01 16:42:03 +02:00
|
|
|
* CAdventureOptions.h, part of VCMI engine
|
2017-07-13 10:26:03 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*/
|
2011-12-14 00:23:17 +03:00
|
|
|
#pragma once
|
|
|
|
|
2023-02-01 20:42:06 +02:00
|
|
|
#include "../windows/CWindowObject.h"
|
2015-02-02 14:02:27 +02:00
|
|
|
|
2023-02-01 20:42:06 +02:00
|
|
|
class CButton;
|
2015-01-13 21:57:41 +02:00
|
|
|
|
2018-04-07 13:34:11 +02:00
|
|
|
/// Adventure options dialog where you can view the world, dig, play the replay of the last turn,...
|
2023-05-08 14:18:34 +02:00
|
|
|
class AdventureOptions : public CWindowObject
|
2014-07-15 10:14:49 +03:00
|
|
|
{
|
2018-04-07 13:34:11 +02:00
|
|
|
std::shared_ptr<CButton> exit;
|
|
|
|
std::shared_ptr<CButton> viewWorld;
|
|
|
|
std::shared_ptr<CButton> puzzle;
|
|
|
|
std::shared_ptr<CButton> dig;
|
|
|
|
std::shared_ptr<CButton> scenInfo;
|
|
|
|
/*std::shared_ptr<CButton> replay*/
|
2014-07-15 10:14:49 +03:00
|
|
|
|
2023-02-10 23:29:13 +02:00
|
|
|
public:
|
2023-05-08 14:18:34 +02:00
|
|
|
AdventureOptions();
|
2023-02-10 23:29:13 +02:00
|
|
|
|
2014-07-15 10:14:49 +03:00
|
|
|
static void showScenarioInfo();
|
|
|
|
};
|
|
|
|
|